/* xs */
@media (max-width: 575px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 30px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 70px;
        right: 30px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}

/* sm */
@media (min-width: 576px) and (max-width: 767px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 40px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 70px;
        right: 30px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}

/* md */
@media (min-width: 768px) and (max-width: 991px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 50px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 80px;
        right: 100px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}

/* lg */
@media (min-width: 992px) and (max-width: 1199px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 100px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 100px;
        right: 50px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}
  
/* xl */
@media (min-width:1200px) and (max-width: 1399px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 150px;
    z-index: 9999;
    }

    .close-popup {
        font-size: 70px;
        color: #FFFFFF;
        position: absolute;
        top: 80px;
        right: 100px;
        cursor: pointer;
        }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }
}

/* xxl */
 @media (min-width: 1400px) and (max-width: 1599px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 200px;
    z-index: 9999;
    }

    .close-popup {
    font-size: 70px;
    color: #FFFFFF;
    position: absolute;
    top: 80px;
    right: 180px;
    cursor: pointer;
    }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

}

/* xxxl */
@media (min-width: 1600px) {
    .popup-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    padding: 200px;
    z-index: 9999;
    }

    .close-popup {
    font-size: 70px;
    color: #FFFFFF;
    position: absolute;
    top: 100px;
    right: 350px;
    cursor: pointer;
    }

    .popup-content {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    }

}


.popup-modal-content {
	position: relative;
    display: block !important;
    /* flex-direction: column; */
    max-width: 500px !important;
    height: auto;
    /* color: var(--mdb-modal-color); */
    pointer-events: auto;
    background-color: #ffffff;
    border: 15px solid #000000;
    /* border-radius: 8px; */
    /* box-shadow: rgba(0, 0, 0, 0.15) 0px 8px 16px 0px; */
    outline: 0;
    margin-right: auto;
    margin-left: auto;
}

.btn-close{
	box-sizing: content-box;
    width: 1em;
    height: 1em;
    padding: .25em .25em;
    color: #807D7D;
    background: rgba(0, 0, 0, 0) var(--mdb-btn-close-bg) center / 1em auto no-repeat;
    border: 0;
    border-radius: .25rem;
    opacity:inherit;
	cursor: pointer;
	width: 5%;
	font-size: 30px;
}

.popup-modal-header {

    flex-shrink: 0;
    align-items: center;
    padding: 20px;
    /*border-bottom: 1px solid #cccccc;*/
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
	width:100%
}
.popup-modal-footer {
    flex-shrink: 0;
    align-items: center;
    padding: 20px;
   /* border-top: 1px solid #cccccc; */
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
	width:100%
}
.popup-modal-title{
	width:100%;
	font-weight: 500;
	font-family: familyMontserrat, "Be Vietnam Pro", sans-serif;
	color: rgb(79, 79, 79);
	font-size: 18px;
}

.popup-modal-body{
	padding: 20px;
	display:flex;
	font-family: familyMontserrat, "Be Vietnam Pro", sans-serif;
	color: #5B5B5B;
	font-size: 16px;
	line-height: 25.6px;
	font-weight: 100;
}

.popup-btn-primary {
    margin-top: 15px;
    margin-bottom: 15px;
    color: #FFFFFF;
    background-color: #ED6847 !important;
    font-family: 'Montserrat', "Be Vietnam Pro", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 2.5px;
    line-height: 27.2px;
    padding: 18px 44px;
    margin: 5px 5px;
    text-transform: uppercase;
    border: 2px solid #ED6847;
    border-radius: 35px !important;
    transition-property: transform;
    transition: transform .3s cubic-bezier(.22, .665, .34, .875);
    white-space-collapse: collapse;
	width: 80px;
}