.aureo-pass-spacing {
    padding: 10px 0;
    width: 100%;
}

.aureo-pass-divider {
    width: 100%;
    border: 1px solid rgb(223, 223, 223);
    border-top-width: 0;
}

.aureo-information-area {
    background-color: rgb(235, 235, 235);
    padding: 14px;
}

.aureo-pass-loader {
    display: none;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: white;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.aureo-pass-loader.active{
    display: flex;
    visibility: visible;
    z-index: 3;
}

.aureo-pass-container {
    padding: 25px;
    visibility: hidden;
    opacity: 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 100%;
    height: 100vh;
    width: 100%;
    overflow: auto;
    z-index: 999;
    background-color: #f7f7f7;
    transform: scale(0);
    -webkit-transform: scale(0.2, 0.2);
    -webkit-transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
    transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}

.aureo-pass-container.active {
    transform: scale(1, 1);
    visibility: visible;
    opacity: 1;
}

.aureo-pass-container * {
    margin: 0;
    line-height: 1.5;
}

.aureo-pass-container span {
    color: gray;
}

.aureo-pass-container .aureo-pass-items {
    position: relative;
    display: flex;
    justify-content: space-between;
}

.aureo-pass-container .aureo-pass-items .aureo-pass-resume {
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    padding: 0;
    margin: 0;
    max-width: 35%;
    box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.4);
    margin-right: 20px;
    background-color: white;
}

.aureo-pass-container .aureo-pass-items .aureo-pass-resume img {
    object-fit: cover;
    aspect-ratio: 16/9;
    margin: 0;
    max-width: 100%;
    box-sizing: border-box;
}

.aureo-pass-container .aureo-pass-items .aureo-pass-resume .aureo-pass-resume-details {
    padding: 0 20px;
}

.aureo-resume-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.aureo-pass-button {
    box-sizing: border-box;
    width: 100%;
    text-align: center;
    margin: 10px 0;
    text-decoration: none;
}

.aureo-big-pass-button {
    padding: 10px 15px;
}

.aureo-pass-button-gb {
    background-color: #ff7700;
}

.border-rounded {
    border-radius: 3px;
}

.border-gray {
    border: 1px solid gray;
}

.aureo-white,
.aureo-white:hover {
    color: white;
}

.aureo-gray {
    color: gray;
}

.aureo-blue {
    color: #2271b1;
}

.aureo-pass-container .aureo-pass-items .aureo-pass-holder-details {
    margin-left: 40px;
    width: 100%;
}

@media only screen and (max-width: 425px) {
    .aureo-pass-container .aureo-pass-items {
        flex-direction: column;
        justify-content: space-between;
    }

    .aureo-pass-container .aureo-pass-items .aureo-pass-resume {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .aureo-pass-container .aureo-pass-items .aureo-pass-holder-details {
        margin-left: 0;
        margin-top: 10px;
    }
}

@media only screen and (max-width: 768px) {
    .aureo-pass-container .aureo-pass-items {
        flex-direction: column;
        justify-content: space-between;
    }

    .aureo-pass-container .aureo-pass-items .aureo-pass-resume {
        max-width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .aureo-pass-container .aureo-pass-items .aureo-pass-holder-details {
        margin-left: 0;
        margin-top: 10px;
    }
}