.call-modal-header {
    display: flex;
    justify-content: center;
    align-items: start;
    padding-top: 50px;
}
#sd-form * {
    box-sizing: border-box;
}
#sd-form strong {font-weight: bold !important}
#sd-form b {font-weight: bold !important}
#sd-form .country-title b {color: #f57c00;}
#sd-form h2 {font-size: 2rem;}
#sd-form h2 b {color: #f57c00;}
.flex {
    display: flex;
}
.justify-center {justify-content: center;}
.gap14 {
    gap: 14px;
}
.w-full {width: 100%;}
.text-end {
    text-align: right!important;
}
img {
    max-width: 100%;
}
.w600 {
    font-weight: 600;
}
.w900 {
    font-weight: 900;
}
.cta {
    background-color: #51c05a;
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    padding: 13px 35px;
    transition: all .1s linear;
    box-shadow: 0 6px 16px 0 rgba(83, 114, 85, 30%);
    text-transform: uppercase;
    margin-top: 30px;
}
.cta:hover {
    color: #FFF;
    transform: translateY(-4px);
    box-shadow: 0 6px 24px 0 rgba(93, 159, 97, 50%);
}
:root {
    --form-height: 470px;
    --frame-height: 380px;
    --form-width: 400px;
    --blue: #1495f9;
}
#sd-form-wrapper, #sd-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}
#sd-wrapper {
    position: fixed;
    z-index: 99999;
    width: 100%;
    top: 0;
    left: 0;
    padding: 0px;
}
@media (min-width: 576px) {
    #sd-wrapper {
        position: relative;
        z-index: inherit;
        padding: 30px 0;
    }
}
.sd-topbar {
    width: 100%;
    height: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}
.sd-topbar-header {
    margin: 0;
    font-size: 1.4em;
}
.sd-close-btn {
    background: url('close.svg') center center no-repeat transparent;
    width: 15px;
    height: 15px;
    opacity: 0.5;
    cursor: pointer;
    display: none;
}
.sd-close-btn:hover {
    opacity: 1;
}
#sd-form {
    opacity: 0;
    position: relative;
    flex-grow: 1;
    width: 100%;
    background: #eaeaea;
    border: 3px solid var(--blue);
    max-width: var(--form-width);
    /* height: var(--form-height); */
    overflow: hidden;
    background-color: #fff;
    transition: opacity 0.3s;
}
#sd-form .sd-progress, #sd-form .sd-navi {
    /* position: absolute;
    top: 0;
    left: 0; */
    width: 100%;
    height: 50px;
}
#sd-form .sd-navi {
    top: initial;
    bottom: 0;
    padding: 0 20px;
    height: 60px;
    box-shadow: 0 2px 20px rgb(119 119 119 / 36%);
}
#sd-form .sd-navi button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
#sd-form .sd-prev button {
    display: none;
}
#sd-form .framees {
    position: relative;
    height: var(--frame-height);
}
#sd-form .sd-form-container {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    transition: all 0.17s ease-in-out;
}
#sd-form .sd-frame {
    width: 100%;
    height: var(--frame-height);
    padding: 20px;
    overflow-y: scroll;
}
#sd-form .sd-frame::-webkit-scrollbar {
    width: 8px;
}
#sd-form .sd-frame::-webkit-scrollbar-track {
    background: #f1f1f1;
    background: transparent;
}
#sd-form .sd-frame::-webkit-scrollbar-thumb {
    background: #bbb;
    border-radius: 10px;
}
#sd-form .sd-frame::-webkit-scrollbar-thumb:hover {
    background: #999;
}
#sd-form .sd-navi {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
#sd-form .sd-navi button {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    background-color: var(--blue);
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 8px;
    font-size: 16px;
    color: #fff;
}
#sd-form .sd-navi .sd-next button:hover {
    background-color: #36a6fd;
}
#sd-form .sd-navi .sd-prev button {
    background-color: #fff;
    color: #999;
    border: 2px solid #eceef2;
    padding: 6px 15px;
}
#sd-form .sd-navi .sd-prev button:hover {
    border-color: #ccc;
    color: #888;
}
#sd-form .sd-progress {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 0 30px;
    padding-top: 10px;
}
.progress-step {
    font-size: 1.2em;
    font-weight: bold;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    text-align: center;
    background: #f2f2f2;
    color: #c0cad1;
    transition: all 0.2s ease-in-out;
    display: flex;
    justify-content: center;
    align-items: center;
}
.progress-step.passed, .progress-step:first-child {
    background-color: var(--blue);
    color: #fff;
}
.progress-line {
    height: 3px;
    background-color: #f2f2f2;
    flex-grow: 1;
    transition: all 0.2s ease-in-out;
}
.progress-line.passed {
    background-color: var(--blue);
}
.form-group {
    margin-bottom: 20px;
}
.sd-frame .form-group:last-child {margin-bottom: 0;}
.form-group label, .form-group .radio-header {
    display: block;
    margin-bottom: 4px;
    color: #8c8f95;
    font-size: 14px;
}
.form-group input, .form-group select {
    width: 100%;
    padding: 10px;
    margin: 0;
    font-size: 14px;
    color: #000;
    background-color: #fff;
    border: 2px solid #eceef2;
    border-radius: 8px;
    transition: border-color .15s ease-in-out, box-shadow .15s ease-in-out;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.form-group input:active, .form-group input:focus, .form-group select:active, .form-group select:focus {
    outline: 3px solid #dcefff;
    border: 2px solid #2ca0fe;
}
.sd-radio input[type=radio] {
	display: none;
}
.sd-radio label {
	cursor: pointer;
    display: block;
    padding: 10px;
    border-radius: 8px;
    border: 2px solid #eceef2;
    color: #333;
    margin-bottom: 10px;
}
.sd-radio label:hover {
    background-color: #eceef2;
}
.sd-radio input:checked + label {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
}

#sd-form .sd-radio input:checked + label .country-title b {color: #fff;}

.sd-radio input::checked + label {
    background-color: var(--blue);
    border-color: var(--blue);
    color: #fff;
}
.sd-sum {
    font-size: 18px;
}
.sd-frame .input-error {
    border-color: red !important;
}
#sd-form #sd-submit {
    border: none;
    background-color: #f57c00;
    color: #fff;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 8px;
    font-size: 16px;
    transition: background-color 0.2s ease-in;
}
#sd-form #sd-submit:hover {
    background-color: #ff8f1e;
}
#sd-form #sd-submit:disabled {
    background-color: #d8d8d8;
    border: none;
    padding: 8px 15px;
    font-weight: bold;
    border-radius: 8px;
    font-size: 16px;
}
#sd-form .cost-footer {
    color: #f57c00;
}
.sd-fancy-btn {
    background: #f57c00;
    padding: 14px 20px;
    font-weight: bold;
    display: inline-block;
    margin-top: 20px;
    color: #fff !important;
    border-radius: 9px;
}
.sd-fancy-btn:hover {background: #ff8912;}