.pop-in {
    z-index: 10;
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.5);
    font-family: "pangram-regular";
}

@media (max-width: 46.24em) {
    .pop-in {
        height: 100vh;
    }
}

.pop-in-inner {
    position: absolute;
    left: 25%;
    right: 25%;
    top: 25%;
    bottom: 25%;
    margin: auto;
    background: white;
    width: 684px;
    height: 651px;
    z-index: 999;
    padding-top: 24px;
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    /* Firefox, other Gecko */
    box-sizing: border-box;
    text-align: center;
    border-radius: 4px;
}

@media (max-width: 46.24em) {
    .pop-in-inner {
        left: 2vw;
        right: 2vw;
        width: 96vw;
        max-width: 684px;
        max-height: 98%;
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
    }
}

.pop-in-header {
    width: 100%;
    position: relative;
    text-align: center;
    font-family: "Playfair Display", serif;
    font-size: 32px;
    font-weight: bold;
    line-height: 1.09;
    color: #1f1c35;
    margin-bottom: 6px;
}

@media (max-width: 46.24em) {
    .pop-in-title {
        font-size: 20px;
        padding: 0 12px;
        margin-top: 12px;
        margin-bottom: 12px;
    }
}

.pop-in-baseline {
    margin: 0;
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 160px;
    color: #1f1c35;
}

@media (max-width: 46.24em) {
    .pop-in-baseline {
        margin-bottom: 120px;
        font-size: 13px;
    }
}

.pop-in-close {
    height: 28px;
    width: 28px;
    position: absolute;
    top: 6px;
    right: 30px;
    cursor: pointer;
}

.pop-in-close:before {
    content: "";
    position: absolute;
    height: 100%;
    background-color: #1f1c35;
    width: 2px;
    -webkit-transform: rotateZ(45deg);
    -ms-transform: rotate(45deg);
    transform: rotateZ(45deg);
}

.pop-in-close:after {
    content: "";
    position: absolute;
    height: 100%;
    background-color: #1f1c35;
    width: 2px;
    -webkit-transform: rotateZ(135deg);
    -ms-transform: rotate(135deg);
    transform: rotateZ(135deg);
}

@media (max-width: 46.24em) {
    .pop-in-close {
        top: -28px;
        right: 16px;
    }
}

.pop-in-content {
    height: 323px;
    width: 100%;
    color: white;
    background-color: #2f2063;
    padding: 125px 31px 31px 31px;
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    /* Firefox, other Gecko */
    box-sizing: border-box;
    text-align: left;
    position: relative;
}

.pop-in-content h4 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 0;
}

.pop-in-content p {
    margin: 0;
    font-size: 14px;
    font-weight: normal;
}

.pop-in-content p:nth-child(5) {
    margin-top: 13px;
}

@media (max-width: 46.24em) {
    .pop-in-content {
        padding: 12px 12px;
        height: auto;
    }
    .pop-in-content p {
        font-size: 13px;
    }
}

.pop-in-custom-container {
    position: absolute;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-sizing: border-box;
    /* Safari/Chrome, other WebKit */
    /* Firefox, other Gecko */
    box-sizing: border-box;
    padding: 0 31px;
    width: 100%;
    top: -105px;
    left: 0;
}

@media (max-width: 46.24em) {
    .pop-in-custom-container {
        top: -90px;
        padding: 0 12px;
    }
}

.pop-in-custom-label {
    position: absolute;
    text-align: center;
    width: 90%;
    top: -40px;
    font-size: 16px !important;
    font-weight: bold !important;
    color: #1f1c35;
}

@media (max-width: 46.24em) {
    .pop-in-custom-label {
        font-size: 14px !important;
        top: -28px;
    }
}

.pop-in-custom-card {
    width: 197px;
    height: 216px;
    background-color: #ffffff;
    -webkit-box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.13);
    box-shadow: 0 0 13px 0 rgba(0, 0, 0, 0.13);
    border-radius: 4px;
    font-size: 14px;
    font-weight: bold;
    color: #1f1c35;
    text-align: center;
}

@media (max-width: 46.24em) {
    .pop-in-custom-card {
        width: 92px;
        height: 98px;
    }
}

.pop-in-custom-icon {
    height: 184px;
    width: 159px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin: 0 auto;
}

@media (max-width: 46.24em) {
    .pop-in-custom-icon {
        width: 70px;
        height: 59px;
    }
}

.pop-in-footer {
    height: 83px;
    font-size: 16px;
    font-weight: bold;
    color: #1f1c35;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
}

@media (max-width: 46.24em) {
    .pop-in-footer {
        font-size: 14px;
        height: 64px;
    }
}

.pop-in-inner--small {
    width: 411px;
    height: 411px;
    color: #1f1c35;
}

@media (max-width: 46.24em) {
    .pop-in-inner--small {
        width: 96vw;
        max-width: 411px;
    }
}

.pop-in-close--small {
    height: 20px;
    width: 20px;
    top: 10px;
    right: 10px;
}

.pop-in-limit {
    height: 101px;
}

// WEBPACK FOOTER //
// ./src/styles/PopIn.css