@font-face {
    font-family: 'Montserrat-Regular';
    src: url('../../fonts/Montserrat-Regular.ttf');
}

@font-face {
    font-family: 'Montserrat-Medium';
    src: url('../../fonts/Montserrat-Medium.ttf');
}

@font-face {
    font-family: 'Montserrat-Bold';
    src: url('../../fonts/Montserrat-Bold.ttf');
}

.boxContainer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    background-color: rgba(0, 0, 0, 0.3);
}

.msgbox {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: auto;
    min-height: 15%;
    border: 3px solid #5A8093;
    background-color: white;
    text-align: center;
}

.boxvis {
    display: none;
}

.boxContainer > .msgbox {
    position: fixed;
}

.msgbox h1 {
    margin: 0;
    padding: 1.5%;
    color: #5A8093;
    font-size: 4vw;
    background-color: white;
    font-family: "Montserrat-Bold";
    border-bottom: 1px solid #00364F;
    text-align: left;
}

.msgbox h2 {
    margin: 0;
    color: #5A8093;
    font-size: 4vw;
    font-family: "Montserrat-Medium";
}

.msgbox p {
    display: inline-block;
    font-size: 3.6vw;
    width: 100%;
    margin-top: 2%;
    color: #5A8093;
    text-align: center;
    font-family: "Montserrat-Regular";
    vertical-align: middle;
    white-space: nowrap;
}

.msgbox .closeBox {
    width: 20%;
    padding: 2%;
    display: inline-block;
    position: relative;
    margin: 4vw 2% 2vw 2%;
    text-align: center;
    font-size: 3vw;
    background-color: #00364F;
    border: none;
    cursor: pointer;
    color: white;
    letter-spacing: 1.95px;
    outline: none;
    font-family: 'Montserrat-Medium';
    -webkit-transition-duration: 0.4s; /* Safari */
    transition-duration: 0.4s;
}

.msgbox .closeBox.cancelc {
    background-color: #CADCB9;
}

.msgbox .closeBox:hover {
  background-color: #FAD772;
}

.msgbox input {
    width: 85%;
}

.dumdum {

}

.msgbox {
  min-width: 95%;
}