h2, p, b, span {
    font-family: Roboto, sans-serif;
}
.custom-popup-button {
    background-color: #6EC1E4;
    padding: 20px 50px 20px 50px;
    border: 0;
    font-family: Roboto, sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #fff;
    line-height: 20px;
    border-radius: 6px;
    cursor: pointer;
}
.popup_div {
    float: left;
    width: 100%;
    text-align: center;
}
.popup-overlay {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    background-color: #00000080;
    justify-content: center;
    align-items: center;
    pointer-events: all;
}
.popup-content {
    padding: 20px 30px;
    animation-duration: 1.2s;
    background-color: #FFF;
    border-radius: 20px 20px 20px 20px;
    box-shadow: 2px 8px 23px 3px rgba(0,0,0,.2);
    overflow: visible;
    max-width: 100%;
    max-height: 100%;
    margin: 0 auto;
    pointer-events: all;
    position: relative;
}
.popup-content button {
    background-color: #6EC1E4;
    color: #fff;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    min-width: 18rem;
    max-width: 24rem;
    padding: 1rem 1.6rem;
    text-align: inherit;
    text-decoration: none;
    border: 0.2rem solid transparent;
    border-radius: 0.4rem;
    transition-timing-function: cubic-bezier(.4,0,.2,1);
    transition-duration: .2s;
    transition-property: color, background-color;
}
.popup-content button img {
    width: 24px;
    float: right;
}
.popup-content h2 {
    color: #183C51;
    font-family: "Roboto", Sans-serif;
    font-size: 36px;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 41px;
    letter-spacing: 1px;
    text-align: center;
}

p.error-msg {
    color: #dc002f;
}

.close-button {
    position: absolute;
    top: 10px;
    right: 10px;
    cursor: pointer;
}
.popup-content .close-button {
    color: #333;
    font-weight: 400;
    font-size: 20px;
}
.general_layout {
    display: flex;
    flex-wrap: wrap;
    padding-top: 30px;
    padding-bottom: 30px;
}
.layout_left p {
    font-weight: 600;
    color: #000;
}
.layout_right {
    width: 60%;
    height: 100%;
    padding-right: 2rem;
    padding-left: 3rem;
}
.layout_left {
    width: 40%;
    height: 100%;
    padding: 4rem;
    background: #f0f0f0;
}
.layout_left img {
    border: 1px solid #c9cbcb;
    margin: 0 auto;
    text-align: center;
    display: block;
}
.layout_right h4 {
    font-weight: 600;
    line-height: 1.25;
    color: #2e3133;
    font-size: 24px;
}
.layout_right p {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
}
.layout_right label {
    font-weight: 600;
    line-height: 1.41;
    color: #2e3133;
}
.layout_right input {
    min-height: 40px;
    padding: 0.5rem 1.2rem;
    border: 0.1rem solid #c9cbcb;
    border-radius: 0.4rem;
    width: 100%;
}
p.gurantee {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
    color: #000;
    padding-top: 30px;
}
.layout_right b {
    float: left;
    width: 100%;
    color: #058360;
    padding-top: 30px;
}
.layout_right ul {
    float: left;
    width: 100%;
}
.layout_right ul li img {
    margin-right: 12px;
}
.layout_right ul li {
    font-size: 1.5rem;
    color: #000;
    margin-top: 10px;
}
.layout_right a:hover {
    text-decoration: underline;
}
.layout_right a {
    color: #6EC1E4;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.5;
}
.layout_right a img {
    width: 15px;
    padding-top: 2px;
}
@media only screen and (max-width: 767px) {
.popup-content {
    overflow-y: scroll;
    margin-right: 10px;
    margin-left: 10px;
    margin-top: 0;
    height: 750px;
}
.general_layout {
    display: block;
    float: left;
    width: 100%;
}
.layout_left {
    width: 100%;
    height: auto;
}
.layout_right {
    width: 100%;
    height: auto;
    padding-right: 0;
    padding-left: 0;
    padding-top: 30px;
}
}