/*================ default ==================*/
:root {
    --cr-light: #fffFFF;
    --cr-black: #111111;
    --cr-dark: #333333;
    --cr-gray: #666666;
    --cr-lightgray: #999999;
    --cr-green: #00A94F;
    --cr-green2: #007938;
    --cr-border: #E7E7E7;
    --cr-red: #f00;
    --cr-warning: #ec4546;
    --cr-warning2: #B91213;
    --tsition: .3s ease-in-out;
    --radius: 8px;
}


/*============================== LAYOUT ===============================*/
.icw button, .icw input, .icw select, .icw textarea { -webkit-appearance: none; -moz-appearance: none; appearance: none; -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none;
    -webkit-border-radius: 0; -moz-border-radius: 0; border-radius: 0; border: 0; background: none; padding: 0; margin: 0;min-width: inherit;
    font: inherit;text-transform: none;text-align: left; color: inherit;-webkit-font-smoothing: antialiased;-moz-osx-font-smoothing: grayscale;
}
.icw input::placeholder{color: #999;}

.icw .a-left{text-align: left;}
.icw .a-center{text-align: center;}
.icw .a-right{text-align: right;}

.icw .row-flex{display: flex; flex-wrap: wrap;}
.icw .row-flex.align-items-center{align-items: center;}
.icw .row-flex > div{float: none;}
.icw .row-flex > .col{ flex-basis: 0;-webkit-box-flex: 1;flex-grow: 1;max-width: 100%;}
.icw .row-flex > .col-auto{-webkit-box-flex: 0;flex: 0 0 auto; width: auto; max-width: none;}
.icw .row-flex > .col-12 {-webkit-box-flex: 0;flex: 0 0 100%;max-width: 100%;}
.icw .row-flex > .col-6 {-webkit-box-flex: 0;flex: 0 0 50%;max-width: 50%;}


/*============================== button ===============================*/
.icw .btn{padding: 0 32px; width: auto; min-width: 120px; font-family: 'kurious-looped'; font-weight: 600; border: 0; font-size: 16px;height: 48px;
    background: transparent; color: var(--cr-gray); display: inline-flex; justify-content: center; align-items: center;
    text-align: center; border-radius: 8px; transition: var(--tsition); line-height: 1.5em; text-decoration: none;
    overflow: hidden; position: relative; z-index: +1; /*box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25); */
}
.icw .btn:hover,
.icw .btn:active:hover, 
.icw .btn.active:hover, 
.icw .btn:active:focus,
.icw .btn.actitve:focus,
.icw .btn:active.focus,
.icw .btn.active.focus,
.icw .btn:focus,
.icw .btn:focus:hover,
.icw .btn.focus:hover{
    color: var(--cr-gray); background-color: transparent; outline: 0; outline-offset:0;
}

.icw .btn:before{content: ''; position: absolute; z-index: -1; top: 0; left: -100%; width: 100%; height: 100%; transition: var(--tsition); opacity: 0;}
.icw .btn:hover:before{left: 0; opacity: 1;}

.icw .btn.disabled,
.icw .btn.disabled:hover{color: var(--cr-gray); background-color: transparent; border-color: var(--cr-border); opacity: 0.5;}

.icw .btn.fluid{width: 100%; min-width: inherit;}

.icw .btn.btn-primary{background: var(--cr-green); color: var(--cr-light); transition: all .8s,color .3s .3s;}
.icw .btn.btn-primary:hover{background: var(--cr-green); color: var(--cr-light); border-color: var(--cr-green);}
.icw .btn.btn-primary:before{background-color: #0BC160;}

.icw .btn.btn-secondary{background: var(--cr-light); color: var(--cr-green);}
.icw .btn.btn-secondary:hover{background: var(--cr-light); color: var(--cr-light);}
.icw .btn.btn-secondary:before{background-color: var(--cr-green);}


/*############################ select2 ###################################*/
.select2-hidden-accessible {border: 0;clip: rect(0 0 0 0);clip-path: inset(50%); height: 1px; overflow: hidden; padding: 0; 
    position: absolute;width: 1px;white-space: nowrap;
}
.select2-container {position: relative; display: block; margin: 0; width: auto;}
.select2-dropdown {background: var(--cr-light); display: block;position: absolute;width: 100%; z-index: 1051;
    -webkit-transition: border-color 250ms ease-in-out;
    -o-transition: border-color 250ms ease-in-out;
    transition: border-color 250ms ease-in-out;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-animation: fadeIn 400ms;
    animation: fadeIn 400ms;
}
.select2-dropdown { border: 1px solid #D7D7D7; border-top: 0; border-radius: 0 0 25px 25px;box-shadow: 0 5px 6px rgba(0, 0, 0, .1);}
.select2-dropdown.select2-dropdown--above{ border-bottom: 0; border-top: 1px solid var(--cr-green); border-radius: 25px 25px 0 0;box-shadow: 0 0px 0px rgba(0, 0, 0, .1);}
.select2-container--default.select2-container--open:not(.select2-container--disabled) .select2-selection--single, 
.select2-container--default.select2-container--open:not(.select2-container--disabled) .select2-dropdown, 
.select2-container--default.select2-container--focus:not(.select2-container--disabled) .select2-selection--single {background-color: var(--cr-light); border-color: var(--cr-green);}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single{ border-bottom: 0;border-bottom-left-radius: 0; border-bottom-right-radius: 0;}
.select2-container--open .select2-dropdown--below { border-top: 0;border-top-left-radius: 0; border-top-right-radius: 0;}
.select2-container--open .select2-dropdown {left: 0;overflow: hidden;}
.select2-search--dropdown.select2-search--hide {display: none;}
.select2-container .select2-results {display: block;}
.select2-container .select2-results__options {list-style: none;margin: 0;padding: 0;}
.select2-container--default .select2-results > .select2-results__options {max-height: 25vh;overflow-y: auto; 
    background-color: var(--cr-light); color: #aaa;
}
.select2-container .select2-results__option { margin: 0; font-size: 16px; word-wrap: break-word;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.select2-container .select2-results__option {padding: 13px 8px 13px 16px; border: 0; font-weight: 600; font-family: 'kurious-looped';}
.select2-container .select2-results__option[role="group"] {padding: 0; border: 0;}
.select2-container .select2-results__option[role="group"] .select2-results__group{display: block; padding: 13px 8px 13px 16px; font-weight: 600; color: var(--cr-gray); font-size: 13px;}
.select2-container--default .select2-results__option--highlighted[aria-selected] {background-color: var(--cr-green);color: var(--cr-light);}
.select2-selection__rendered{border-radius: 25px;border: none;margin: 0;width: 100%; min-height: 48px; font-size: 16px; font-weight: 600; position: relative;
    padding-left: 16px; padding-top: 10px; padding-bottom: 10px; padding-right: 64px; background-color: var(--cr-light); color:var(--cr-green); 
    border: 1px solid #D7D7D7; line-height: 1.5em; text-align: left; display: block; white-space: nowrap; text-overflow: ellipsis; overflow: hidden;
}
.select2-selection__rendered:after{content: ''; display: table; clear: both;}
.select2-selection__rendered .select2-selection__clear{position: absolute; top: 12px; right: 16px; font-size: 26px; color: var(--cr-gray); background: #f2f2f2; cursor: pointer;
    border-radius: 50%; width: 26px; height: 26px; line-height: 25px; display: flex; justify-content: center; align-items: center; text-align: center; display: none;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder{color: var(--cr-lightgray);}
.select2-container--default .select2-selection--single{background-color: transparent; border: none;}
.select2-container--open .select2-selection__rendered{border-radius: 25px 25px 0 0; border-color: var(--cr-green); border-bottom-color: transparent;}
.select2-container--above.select2-container--open .select2-selection__rendered{border-radius: 0 0 25px 25px;}
.select2-container--default .select2-selection--single .select2-selection__arrow b{display: none;}
.select2-container--default .select2-selection--single .select2-selection__clear{display: none;}
.select2-container--default .select2-selection--single .select2-selection__arrow{right: 24px; top: 16px; margin: auto; height: 16px; width: 16px; 
    pointer-events: none; position: absolute; display: none;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:before,
.select2-container--default .select2-selection--single .select2-selection__arrow:after { position: absolute;content: "";display: inline-block;width: 12px; height: 3px;
    background-color: var(--cr-gray); transition: var(--tsition);
}
.select2-container--default .select2-selection--single .select2-selection__arrow:before{position: absolute;transform: rotate(45deg);top: 5px;left: -1px;}
.select2-container--default .select2-selection--single .select2-selection__arrow:after {position: absolute;transform: rotate(-45deg);top: 5px;left: 6px;}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:before {transform: rotate(-45deg);}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow:after {transform: rotate(45deg);}


.select2-container--default .select2-search--hide + .select2-results .select2-results__option[role="treeitem"]{padding-left: 16px;}
.select2-container--default .select2-search--hide + .select2-results .select2-results__option[role="treeitem"]:before{display: none;}
.select2-container--default .select2-results__option[role="treeitem"]{position: relative; padding-left: 48px;}
.select2-container--default .select2-results__option[role="treeitem"]:before {content: ""; position: absolute; top: 11px; left: 16px;
    display: block; height: 24px;width: 24px; border: 1px solid var(--cr-lightgray);border-radius: 4px;background-color: var(--cr-light);
}
.select2-container--default .select2-results__option[aria-selected=true]:before {content: "\e972"; font-family: 'iconavigation';
    display: inline-flex; justify-content: center; align-items: center; font-size: 16px; 
}
.select2-container--default .select2-results__option.select2-results__option--highlighted[aria-selected="true"]{color: var(--cr-light);}
.select2-container--default .select2-results__option.select2-results__option--highlighted[aria-selected="true"]:before{
    color: var(--cr-green); border-color: var(--cr-light); background: var(--cr-light);
}
.select2-container--default .select2-results__option[aria-selected="true"]{color: var(--cr-green);}
.select2-container--default .select2-results__option[aria-selected="true"]:before{color: var(--cr-light); border-color: var(--cr-green); background: var(--cr-green);}
.select2-container--default .select2-selection--multiple .select2-selection__choice {background-color: var(--cr-light); font-size: 16px;line-height: 1.5em;
    border: 1px solid #CCEEDC;border-radius: 8px;cursor: default;float: left;padding: 4px 8px;color: var(--cr-dark); margin: 3px; 
    text-overflow: ellipsis; overflow: hidden; max-width: 100%;
}
.select2-container--default .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove{margin-right: 4px; 
    font-size: 18px; color: var(--cr-red); position: relative; top: 1px; display: none;
}
.select2-container--default .select2-selection--multiple .select2-search.select2-search--inline{pointer-events: none;margin: 4px 3px;}
/*.select2-container--default.select2-container--open .select2-selection--multiple .select2-selection__rendered{display: flex; flex-wrap: nowrap; overflow: auto;}*/
/*.select2-container--default.select2-container--open .select2-selection__rendered .select2-selection__clear{display: none;}*/
.select2-selection.select2-selection--multiple .select2-selection__rendered{padding-top: 7px; padding-bottom: 7px; padding-left: 13px; padding-right: 13px;}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li {list-style: none;}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li .select2-search__field{max-width: 100%; pointer-events: none;}
.select2-container--default .select2-selection--multiple .select2-selection__rendered li .select2-search__field:focus-visible{outline-offset: 0; border: 0; box-shadow: none; outline: 0;}
.select2-selection--multiple:focus-visible{outline-offset: 0; border: 0; box-shadow: none; outline: 0;}
.select2-container--default .dropdown-wrapper{right: 24px; top: 18px; margin: auto; height: 16px; width: 16px; pointer-events: none; display: block; position: absolute; }
.select2-container--default .dropdown-wrapper:before,
.select2-container--default .dropdown-wrapper:after { position: absolute;content: "";display: inline-block;width: 12px; height: 2px;
    background-color: var(--cr-gray); transition: var(--tsition);
}
.select2-container--default .dropdown-wrapper:before{position: absolute;transform: rotate(45deg);top: 5px;left: -1px;}
.select2-container--default .dropdown-wrapper:after {position: absolute;transform: rotate(-45deg);top: 5px;left: 6px;}
.select2-container--default.select2-container--open .dropdown-wrapper:before {transform: rotate(-45deg);}
.select2-container--default.select2-container--open .dropdown-wrapper:after {transform: rotate(45deg);}



/*############################ droplead-form  ###################################*/
@media screen and (min-width: 200px) {
    .droplead-form{position: relative; padding: 40px 16px; overflow: hidden; background: url(../img/k-ev_p2_bg2_mobile.jpg);}
    .droplead-form .head-title{text-align: center; margin-bottom: 32px;}
    .droplead-form .head-title .title{font-size: 28px; font-family: 'kurious-looped'; line-height: 1.5; color: #111; margin: 0;}
    .droplead-form .client-radio{display: flex;width: 100%;justify-content: center; margin-bottom: 36px;}
    .droplead-form .form-check{display: flex; align-items: center;}
    .droplead-form .form-check+.form-check{margin-left: 48px;}
    .droplead-form .form-radio{width: 24px;height: 24px; margin: 0; margin-right: 16px;}
    .droplead-form .form-radio[type=radio]{width: 24px; height: 24px; padding: 0; cursor: pointer;
        background-color: var(--cr-light); border-radius: 50%; position: relative; border: 1px solid var(--cr-lightgray);
    }
    .droplead-form .form-radio:before{content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0; margin: auto;
        width: 16px; height: 16px; background-color: transparent; border-radius: 50%; transition: var(--transition);
    }
    .droplead-form .form-radio-label{color: var(--cr-dark); margin-top: 1px; font-size: 16px; font-weight: 600; cursor: pointer;}
    .droplead-form .form-radio:checked[type=radio]{border-color: var(--cr-green);}
    .droplead-form .form-radio:checked[type=radio]:before{background-color: var(--cr-green);}
    .droplead-form .form-radio:checked[type=radio] ~ .form-radio-label{color: var(--cr-green);}
    .droplead-form .form-field{position: relative; transition: var(--transition); max-width: 400px;}
    .droplead-form .form-field:after{content: "\e93a"; font-size: 24px; font-family: 'iconavigation';
        position: absolute; right: 16px; bottom: 0px; color: var(--cr-warning2); opacity: 0; pointer-events: none;
        transition: var(--transition);
    }
    .droplead-form .form-field.-select:after{right: 56px;}
    .droplead-form .form-field{height: 0; opacity: 0; pointer-events: none; visibility: hidden; margin: 0; transition: var(--transition);}
    .droplead-form .form-field.show{height: auto; opacity: 1; pointer-events: visible; visibility: visible; margin-left: auto; margin-right: auto;}
    .droplead-form .form-field.show + .form-field.show{margin-top: 32px;}
    .droplead-form label.txt{font-family: 'kurious-looped'; font-weight: 600; font-size: 13px; margin: 0 0 4px 16px; color: var(--cr-black); display: block;}
    .droplead-form label.txt small{font-family: 'kurious-looped'; font-weight: 500; font-size: 10px; margin: 0; color: var(--cr-dark); margin-left: 4px;}
    .droplead-form input.form-control{border-radius: 100px; min-height: 48px; padding: 12px 16px; color: var(--cr-dark); font-size: 16px; font-weight: 600; 
        line-height: 1.2em; background-color: var(--cr-light); margin: 0; width: 100%; height: 48px; font-family: 'kurious-looped';
        border: 1px solid #d7d7d7; outline: none; transition: var(--transition);
    }
    .droplead-form input.form-control:focus{border-color: var(--cr-green); box-shadow: none;}
    .droplead-form input.form-control::placeholder{color:var(--cr-lightgray);}
    .droplead-form input.form-control::-webkit-outer-spin-button,
    .droplead-form input.form-control::-webkit-inner-spin-button {-webkit-appearance: none; margin: 0;}
    .droplead-form input.form-control[type=number] {-moz-appearance: textfield;}
    .droplead-form input.form-control.-none{background: #ddd; border-color: #d7d7d7; color: #999; pointer-events: none;}
    .droplead-form .txt-note-box{display: block; background-color: rgba(255, 255, 255, 0.6); padding: 12px; border-radius: 8px; margin: 32px 0 40px;}
    .droplead-form .txt-note-box p{font-family: 'kurious-looped'; font-size: 13px; font-weight: 500; color: var(--cr-gray); line-height: 1.5em; margin: 0;}
    .droplead-form .txt-note-box p strong{font-weight: 600; color: var(--cr-black);}
    .droplead-form p.txt-note{font-family: 'kurious-looped'; font-size: 13px; font-weight: 500; color: var(--cr-gray); width: auto; padding-left: 16px; line-height: 1.5em; margin: 8px 0 0;}
    .droplead-form p.txt-note strong{font-weight: 600;}
    .droplead-form small.invalid-feedback{font-family: 'kurious-looped'; font-size: 13px; font-weight: 500; position: absolute; z-index: +1; opacity: 0;
        color: var(--cr-light); background-color: var(--cr-warning);width: auto; padding: 0px 16px; left: 0; right: 0px; bottom: 0px; pointer-events: none;
        border-radius: 100px; transition: var(--transition); line-height: 24px; display: block;
    }
    .droplead-form .form-field.inactive{opacity: 0.3; pointer-events: none;}
    .droplead-form .form-field.required{padding-bottom: 0;}
    .droplead-form .form-field.required:after {bottom: 8px; opacity: 1; }
    .droplead-form .form-field.required input.form-control{border-color: var(--cr-warning);}
    .droplead-form .form-field.required small.invalid-feedback{bottom: -32px; opacity: 1;}
    .droplead-form .form-field-radio{display: flex; min-height: 48px; padding-left: 16px;}
    .droplead-form .form-field-radio.show{display: flex !important;}
    .droplead-form .form-field-radio .form-check + .form-check{margin-left: 24px;}
    .droplead-form .form-field.-radio.required:after{display: none;}
    .droplead-form .form-field.-radio.required .form-field-radio .form-radio[type=radio]{border-color: var(--cr-warning);}

    .droplead-form .form-field.-range.required:after{display: none;}

    .droplead-form .form-row{display: block; flex-wrap: nowrap; margin: 0 auto; max-width: 864px;}
    .droplead-form .form-row > .form-field.show{width: 100%}
    .droplead-form .form-row + .form-row{margin-top: 36px;}

    .droplead-form .form-row.-flex-mb{display: flex; margin-left: -8px; margin-right: -8px;}
    .droplead-form .form-row.-flex-mb > .form-field.show{width: 50%; padding-left: 8px; padding-right: 8px;}
    .droplead-form .form-row.-flex-mb > .form-field.show + .form-field.show{margin-top: 0;}

    .droplead-form .form-spacial{display: block; justify-content: space-between; align-items: center; border-radius: 8px; 
        border: 1px solid #14CB8E; background: #F0F8F6; padding: 14px 24px; text-align: center;
    }
    .droplead-form .form-spacial .txt{font-size: 16px; font-weight: 600; color: var(--cr-black); line-height: 1.5em; white-space: nowrap;}
    .droplead-form .form-spacial .number{font-size: 28px; text-align: center; font-weight: 600; color: var(--cr-black); margin-top: 8px; display: block;}

    .droplead-form p.remark{padding: 40px 0px 0; font-family: 'kurious-looped'; line-height: 1.5em; font-size: 13px;
        color: var(--cr-gray); font-weight: 500; max-width: 430px; margin: 0 auto;
    }
    .droplead-form p.remark a{text-decoration: underline;}
    .droplead-form p.remark-note{font-family: 'kurious-looped'; padding: 40px 0px 0; line-height: 1.5em; font-size: 16px;
        color: var(--cr-gray); font-weight: 500; max-width: 430px; margin: 0 auto; text-align: center;
    }

    .droplead-form .action{padding-top: 40px; max-width: 430px; margin: 0 auto; text-align: center;}
    .droplead-form .action .btn{display: flex;width: 100%;align-items: center;justify-content: center; color: var(--cr-light);
        font-size: 16px;font-weight: 600;height: 40px;border: none;border-radius: var(--radius);background-color: var(--cr-green);
        font-family: 'kurious-looped'; transition: all .8s,color .3s .3s; overflow: hidden; position: relative; z-index: +1; cursor: pointer;
    }
    .droplead-form .action .btn:before {content: '';position: absolute;z-index: -1;top: 0;left: -100%;width: 100%;height: 100%;
        transition: var(--transition);opacity: 0; background-color: #0BC160; margin: -1px;
    }
    .droplead-form .action .btn:hover:before{left: 0;opacity: 1;}
    .droplead-form .action .btn.disable{background: #CCC; color: var(--cr-lightgray); pointer-events: none;}
    .droplead-form .action .link{color: #00A94F;font-family: kurious-looped;font-size: 16px;font-style: normal;font-weight: 600;line-height: 24px;text-decoration-line: underline; 
    	margin-top: 16px; display: inline-block;
    }
    .droplead-form .action-back{text-align: center; padding-top: 16px;}
    .droplead-form .action-back .btn-clear{display: inline-block;width: inherit; min-width: inherit; color: var(--cr-green); text-decoration: underline;
        font-size: 16px; font-weight: 600; height: inherit; border: none; border-radius: 0; cursor: pointer;
        background-color: transparent; padding: 0; font-family: 'kurious-looped';
    }
    .droplead-form .action-back .btn-clear .ic{margin-right: 6px; position: relative; top: -2px;}

    .droplead-form .captcha{margin: 16px 0 0; line-height: 1.6em; text-align: center; color: var(--cr-gray); font-family: 'kurious-looped'; font-size: 10px;}
    .droplead-form .captcha .link{line-height: 1.6em; color: var(--cr-gray); font-family: 'kurious-looped'; font-weight: 500;}

    .droplead-form .form-title{margin-top: 40px;}
    .droplead-form .form-title .title{text-align: center; line-height: 1.5em; color: var(--cr-gray);}
    .droplead-form .form-title + .form-row{margin-top: 36px;}

    .droplead-form .select2-selection__rendered{border-color: #d7d7d7;}
    .droplead-form .select2-container--open .select2-selection__rendered{border-color: var(--cr-green); border-bottom-color: var(--cr-light); background: #ECF4F3;}
    .droplead-form .select2-container--above.select2-container--open .select2-selection__rendered{border-color: var(--cr-green); border-top-color: var(--cr-light);}
    .droplead-form .select2-container--default .select2-selection--single .select2-selection__placeholder{color: var(--cr-black);}
    .droplead-form .select2-container .select2-selection--single [title].select2-selection__rendered {color: var(--cr-dark);}
    .droplead-form .form-field.required .select2-selection__rendered{border-color: var(--cr-warning);}
    .droplead-form .txt-or{color: #111; font-family: kurious-looped; font-size: 13px;font-style: normal;font-weight: 600;line-height: 20px; padding: 0 8px;}
    .droplead-form .box{width: 100px;}

    .droplead-form .select2-container--default.select2-container:not(.select2-container--disabled) .select2-selection--single{border: none;}
    .droplead-form .select2-container--default.select2-container--open.select2-container--below .select2-selection--single .select2-selection__rendered{
    	background: #fff;
    }

    .droplead-form .default-form{position: relative;opacity: 0;height: 0;overflow: hidden; visibility: hidden; pointer-events: none; padding: 0; border: none;
        -webkit-transition-property: opacity, visibility;
        -o-transition-property: opacity, visibility;
        transition-property: opacity, visibility;
        -webkit-transition: .6s ease-in-out;
        -o-transition: .6s ease-in-out;
        transition: .6s ease-in-out;
    }
    .droplead-form .default-form.active{opacity: 1;height: auto;overflow: visible; visibility: visible; pointer-events: visible; margin: 0 auto; max-width: 400px;}
}
@media screen and (min-width: 768px) {
	.droplead-form{padding: 40px 16px 64px; background: url(../img/k-ev_p2_bg2_desktop.jpg);}
	.droplead-form .head-title .title{font-size: 33px;}
    .droplead-form .form-row{display: flex; margin: 0 -10px;}
    .droplead-form .form-row > .form-field.show{margin-left: 10px; margin-right: 10px; width: 50%; max-width: 400px;}
    .droplead-form .form-row > .form-field.show.fulid{width: 100%; max-width: inherit;}
    .droplead-form .form-row > .form-field.show + .form-field.show{margin-top: 0;}
    .droplead-form .form-row.-flex-mb{margin-left: -10px; margin-right: -10px;}
    .droplead-form .form-row.-flex-mb > .form-field.show{padding-left: 0; padding-right: 0; margin-left: 10px; margin-right: 10px;}
    .droplead-form .form-spacial{display: flex;}
    .droplead-form .form-spacial .txt{font-size: 20px;}
    .droplead-form .form-spacial .number{font-size: 33px; text-align: right; margin-top: 0; display: inline;}
    .droplead-form .txt-note-box{display: none;}
}
@media screen and (min-width: 992px) {
    .droplead-form .form-row > .form-field.show{max-width: 256px;}
}
@media screen and (min-width: 1200px) {
    .droplead-form .form-row > .form-field.show{max-width: 400px;}
}