.modal-subscribe h3 {
	color: #1B3B75;
	text-align: center;
	/* Desktop_Heading/30_H1 */
	font-family: Montserrat-Bold;
	font-size: 30px;
	font-style: normal;
	font-weight: 700;
	line-height: 40px; /* 133.333% */
	text-transform: uppercase;
	margin-bottom:32px;
}

.modal-subscribe .bx-subscribe-desc {
	color: #000;
	/* Text_18/SemiBold */
	font-family: Roboto;
	font-size: 18px;
	font-style: normal;
	font-weight: 600;
	line-height: 24px; /* 133.333% */
}

.modal-subscribe .bx_subscribe_checkbox_container{
    position: relative;
}

.modal-subscribe .bx_subscribe_checkbox_container input{
    position: absolute;
    width: 1px;
    opacity: 0;
    bottom: 0;
    left: 12px;
    z-index: -1;
}

.modal-subscribe .bx_subscribe_checkbox_container label span{
	color: #000;
    padding-left: 10px;
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 20px;
}

.modal-subscribe .bx_subscribe_checkbox_container label {
    cursor: pointer;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
}

.modal-subscribe .bx_subscribe_checkbox_container label:before {
    content: "";
    position: relative;
    display: flex;
    width: 20px;
    aspect-ratio: 1 / 1;
    border-radius: 3px;    
	border:1px solid #1B3B75;
}	

.modal-subscribe .bx_subscribe_checkbox_containers {
	display: flex;
	gap:24px;
	margin-top:24px;
	margin-bottom:32px;
}

.modal-subscribe .bx_subscribe_checkbox_container input:checked + label:before {
    background-size: 12px 12px;
    background-position: center center;
    background-repeat: no-repeat;
	background-color: #1B3B75;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M10 3L4.5 8.5L2 6' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3e%3c/svg%3e");
}
/*background-color: #1B3B75;*/

.modal-subscribe .bx-input-group label {
    display: block;
    color: #4F4F4F;
    /* Text_14/None/Regular */
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom:8px;
    line-height: 20px; /* 142.857% */
}

.modal-subscribe .bx-form-control {
    display: block;
    border-radius: 3px;
    border: 1px solid #DCDCDC;
    background: #FFF;
    height:40px;
    width:100%;
    color: #000;
    /* Text_14/None/Regular */
    font-family: Roboto;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    margin-bottom:0px;
    line-height: 20px; /* 142.857% */
}

.modal-subscribe button {
    width:345px;
    border:none;
    margin-top:40px;
    color: #FFF;
    /* Text_16/SemiBold */
    font-family: Roboto;
    padding-top:8px;
    padding-bottom:8px;
    font-size: 16px;
    font-style: normal;
    font-weight: 600;
    border-radius: 3px;
    background: #1B3B75;
    line-height: 24px; /* 150% */
}

.modal-subscribe button:hover {
    background: #152D59;
}

.agree_text {
    margin-top:16px;
    color: #4F4F4F;
    text-align: center;
    /* Text_10/Regular */
    font-family: Roboto;
    font-size: 10px;
    font-style: normal;
    font-weight: 400;
    line-height: 14px; /* 140% */
}

.agree_text a{    
    text-decoration: none;
    color: #1B3B75;
}

@media (min-width: 768px) and (max-width: 1199px) {
    .modal-subscribe button {
        margin-top:32px;
    }

    .modal-subscribe h3 {
        margin-bottom:32px;
    }

}

@media (max-width: 767.98px) {
    .modal-subscribe .bx-form-control {
        max-width:100%;
    }

    .modal-subscribe button {
        margin-top:24px;
        max-width:100%;
    }

    .modal-subscribe h3 {
        font-size:24px;
        line-height:110%;
        margin-bottom: 16px;        
    }

    .modal-subscribe .bx_subscribe_checkbox_containers {
        display: flex;
        flex-direction: column;
        gap: 16px;
        margin-top: 8px;
        margin-bottom: 24px;
    }
}

