@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@400;600;700;800&display=swap');

            * {
                outline: none
            }
            body {
                font-family: "Nunito Sans", Arial, sans-serif;
                color: #000;
                background-color: #fff;
                font-size: 16px;
                font-weight: 600;
                max-width: 650px;
                margin: 0 auto;
                padding: 0;
                overflow-x: hidden;
                overflow-y: auto;
            }
            a,
            a:hover,
            a:active {
               color: #000; 
            }
            a:hover{
                text-decoration: none;
            }
            
            .wrapper {
                display: block;
                margin: 0 auto;
                padding: 0;
                max-width: 450px;
            }
            
            .logo-area{
                position: absolute;
                top: 180px;
                left: 0;
                z-index: 10;
                width: 250px;
                height: 230px;
            }
            .canvas-container{
                width: 250px; 
                height: 230px; 
                position: relative; 
                user-select: none;
                border: 0 solid red;
            }

            #mask-div{
                width: 450px;
                height: 450px;
                position: relative;
                background-color: #101820;
                overflow: hidden;
            }
            #mask-bg{
                width: 450px;
                height: auto;
            }
            #canvas{
                position: absolute;
                width: 250px;
                height: 230px; 
                left: 0px; 
                top: 0px; 
                user-select: none; 
                cursor: default;
            }
            
            .btn,
            .field,
            .checker {
                font-family: "Nunito Sans", Arial, sans-serif;
                color: #fff;
                background: #454955;
                padding: 12px 0;
                border: 0;
                border-radius: 3px;
                text-transform: uppercase;
                font-weight: 800;
                font-size: 12px;                
                width: 150px;
                display: block;
                cursor: pointer;
                transition: all ease-in-out 0.2s;
            }
            .btn:hover {
                background: #fff;
                color: #454955;
            }
            .btn .arrow{
                position: absolute;
                margin: -9px 0 0 22px;
                width: 24px;
                height: 24px;
                padding: 5px;
                background: #fff;
                color: #555;
                font-size: 32px;
                line-height: 22px;
                font-weight: 400;
                text-indent: 2px;
                border-radius: 3px;
                transition: all ease-in-out 0.2s;
            }
            
            .field {
                width: 94%;
                margin: 15px 0;
                padding: 12px 0 12px 20px;
            }            
            .field::placeholder {
                color: rgba(255,255,255,0.75);
                font-weight: 400;
            }
            .field-half {
                width: 42%;
                float: left;
            }
            .checker{
                padding: 12px;
                height: 20px;
                width: 20px;
                display: inline;
                vertical-align: middle;
                margin-right: 5px;
            }
            
            .shadow {
                box-shadow: 0 5px 10px 0 rgba(0,0,0,0.2);
            }
            
            .options {
                width: 49%;
                float: left;
                overflow: hidden;
            }
            
            h1 {
                font-size: 24px;
                color: #111;
                font-weight: 700;
                text-align: center;
                text-transform: uppercase;
                margin: 0
            }
            
            hr {
                border: 1px solid #ccc;
                clear: both
            }
            
            label {
                display: block;
                font-size: 12px;
                font-weight: 600;
                text-transform: uppercase;
                color: #999;
                margin-bottom: 10px;
            }
            
            .color-select {
                display: flex; 
                justify-content: space-between;
            }            
            .color-select .col {
                width: 32px;
                height: 32px;
                cursor: pointer;
                border-radius: 100%; 
            }
            .color-select .check {
                position: absolute;
                font-size: 20px;
                font-weight: 600;
                color: #fff;
                font-family: Arial, Helvetica, sans-serif;
                left: -30px;
                margin-left: 8px;
                z-index: 1;
                cursor: default;
            }

            .price {
                color: #111;
                font-size: 32px;
                float: right;
                margin-top: -50px;
            }
            .price small {
                font-size: 12px;
                display: inline-block;
            }

            .nfo {
                color:#999;
                font-size: 11px;
                text-align: center;
                display: none;
                padding: 5px 0 0;
            }

            .close {
                color: #fff;
                background: #CFDFE0;
                font-size: 20px;
                float: right;
                margin-top: 5px;
                padding: 3px 10px;
                border-radius: 3px;
                cursor: pointer
            }
            .close:hover {
                color: #111;
            }

            #extra-color {
                margin: 15px auto 0; 
                text-align: center;
                display: none;
            }
            #xcolor{
                float: left; 
                width: 150px; 
                margin: 5px; 
                padding: 8px 0 8px 16px;
            }
            #xcolor-circle {
                background-color: #123456; 
                float: left; 
                width: 32px; 
                height: 32px; 
                border-radius: 100%; 
                margin: 5px;
            }

            #form {
                display: none;
                position: absolute;
                top: 0;
                left: auto;
                right: auto;
                z-index: 15;
                width: 650px;
                height: 100vh;
                background: #fff;
            }
            
            #img-display {
                width: 250px;
                height: 250px;
                overflow: hidden;
                display: block;
                margin: 0 auto 20px;
            }
            #img-display img {
                width: 250px;
                height: auto;
            }

            @media (max-width: 449px) {
                .options {
                    width: 100%;
                    float: none;
                    padding: 15px 0;                    
                    text-align: center;
                }
                
                #send-img {
                    display: inline-table;
                }
                
                .price {
                    margin-top: -10px;
                }
                
                #form {
                    width: 100%;
                    height: 130vh;
                }

            }

