/* add mc-form  */
        
        #mc-form div {
            margin: 10px 0;
        }
        
        #mc-form input[type=text],
        input[type=email],
        input[type=tel] {
            width: 100%;
            height: 40px;
            border: 1px solid #dcdada;
            font-size: 16px !important;
            padding: 6px;
            color: black !important;
        }
        
        #mc-form label {
            font-size: 0.8em;
            color: #737E86;
        }
        
        #mc-form label[for=all_check] {
            font-weight: 800;
        }
        
        #mc-form button.base {
            width: 100%;
            height: 40px;
            border: none;
            border-radius: 25px !important;
            outline: none;
            color: #fff;
            background: #F98667 !important;
            cursor: pointer;
            margin: auto;
            margin-top: 15px;
            font-size: 18px;
            letter-spacing: 2px;
            font-weight: 700;
        }
        
        #mc-form .error {
            color: #ff6666 !important;
        }

        #mc-form label.error{
            display: block;
            height: 0.2rem;
        }
        
        #page-loading {
            position: fixed;
            top: 0;
            bottom: 0;
            left: 0;
            right: 0;
            background-color: rgba(0, 0, 0, 0.8);
            z-index: 10001;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 1;
            transition: opacity 1s;
        }
        
        #page-loading.hide {
            opacity: 0;
            transition: opacity 1s;
        }
        
        #page-loading .lds-ellipsis {
            display: inline-block;
            position: relative;
            width: 80px;
            height: 80px;
        }
        
        #page-loading .lds-ellipsis div {
            position: absolute;
            top: 33px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: #6c0;
            animation-timing-function: cubic-bezier(0, 1, 1, 0);
        }
        
        #page-loading .lds-ellipsis div:nth-child(1) {
            left: 8px;
            animation: lds-ellipsis1 0.6s infinite;
        }
        
        #page-loading .lds-ellipsis div:nth-child(2) {
            left: 8px;
            animation: lds-ellipsis2 0.6s infinite;
        }
        
        #page-loading .lds-ellipsis div:nth-child(3) {
            left: 32px;
            animation: lds-ellipsis2 0.6s infinite;
        }
        
        #page-loading .lds-ellipsis div:nth-child(4) {
            left: 56px;
            animation: lds-ellipsis3 0.6s infinite;
        }
        
        @keyframes lds-ellipsis1 {
            0% {
                transform: scale(0);
            }
            100% {
                transform: scale(1);
            }
        }
        
        @keyframes lds-ellipsis3 {
            0% {
                transform: scale(1);
            }
            100% {
                transform: scale(0);
            }
        }
        
        @keyframes lds-ellipsis2 {
            0% {
                transform: translate(0, 0);
            }
            100% {
                transform: translate(24px, 0);
            }
        }
        
        img.vert-move {
            -webkit-animation: mover 1s infinite alternate;
            animation: mover 1s infinite alternate;
        }
        
        img.vert-move {
            -webkit-animation: mover 1s infinite alternate;
            animation: mover 1s infinite alternate;
        }
        
        @-webkit-keyframes mover {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-10px);
            }
        }
        
        @keyframes mover {
            0% {
                transform: translateY(0);
            }
            100% {
                transform: translateY(-10px);
            }
        }