



:root {
    /* --bt-blue: #4747FC; Blue */
    --bt-blue: #3971cb; /* Blue */
    --bt-gray: #8E9492; /* Gray */
    --bt-gray: #3c424d; /* Gray */
    --bt-darkgray: #3c424d; /* Dark gray */
    --text-gray: #333; /* Dark gray for text */
    --bt-hover-blue: #4979c6; /* Blue hover */
    --bt-hover-gray: #333333; /* Gray hover */
    --bt-greish: rgb(245, 245, 245); /* Light gray */
    }

html {
    height: 100%;
}

a {
    text-decoration: none;
}

nav {
    position:fixed;
    top: 0;
    width: 100%;
    height: 12vh;
    display: grid;
    grid-template-columns: 1fr 5fr 1fr ;
    background-color: var(--bt-darkgray) ;
    color: white;
    margin-bottom: 0;
    z-index: 1000;
}


body {
    min-height: 100%;
    position: relative;
    font-family: 'Ubuntu', sans-serif;
    color: var(--text-gray);
    margin: 0;
    margin-top: 10vh;
    padding-bottom: 40vh;
    min-height: 90vh;
}

footer {
    position:absolute;
    bottom: 0;
    background-color: var(--bt-gray);
    z-index: 998;
    margin-top: auto;
    width: 100%;
    height: 24vh;
    color: white;
    font-weight: bold;
    box-shadow: 0px 3vh 15vh rgba(0, 0, 0, 0.8);
    margin-top: 40vh;
}

.message {
    height: 10vh;
    min-width: 30vh;
    position: fixed;
    left: 50%;
    transform: translateX(-50%);
    width: fit-content;
    font-size: 1.8vh;
    font-weight: bold;
    z-index: 1000;
    margin-top: 1vh;
    border-radius: 1.5vh;
    color: white;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.message .inner {
    display: flex;
    width: 100%;
    height: inherit;
    position: relative;
    overflow: hidden;
    border-radius: 1.5vh;
    justify-content: center;
    align-items: center;
    transition: height .25s ease, opacity 0.25s ease; /* Added transition */
}

.message.error .inner {
    background-color: rgba(239, 57, 57, 0.908);
}

.message.success .inner {
    background-color: rgba(75, 195, 75, 0.908);
}

.message.info .inner {
    background-color: #3971cbe2;
}

.message span {
    margin: 3vh 5vh;
}

.message.hidden .inner {
    height: 0;
    color: rgba(255, 255, 255, 0);
    opacity: 20%;
}

.message .bar {
    background-color: rgba(0, 0, 0, 0.714);
    height: .6vh;
    width: 100%;
    transition: width 2s linear;
    position: absolute;
    bottom: 0;
    left: 0;
    transform: translateX(-50%);
    transform: translateY(0);
}


.error-container {
    margin: 35vh auto;
    margin-bottom: 0;
    width: 40vw;
    border-radius: 1.2vh;
    border: .5vh solid var(--bt-gray);
    background-color: var(--bt-greish);
    padding: 2vw;
    padding-top: 1vw;
    box-shadow: #33333324 1vw 1vw 1vw;
    position: relative;
    box-sizing: border-box;
}

.error-container .stop {
    height: 6vw;
    position: absolute;
    top: 0;
    right: 0;
    transform: translate(-5%, -100%);   
    -webkit-filter: drop-shadow(.5vw .0vh .5vw #22222255);
    filter: drop-shadow(.5vw .0vh .5vw #22222255);
}

.error-container h1 {
    font-size: 1.5vw;
    color: var(--bt-blue);
    margin-bottom: 2vh;
}

.error-container p {
    font-size: 1.2vw;
}

.error-container .reg {
    font-size: 1.35vw;
    font-weight: bold;
    text-decoration: underline;
    white-space: nowrap;
}

.create-alert {
    margin: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 35vw;
    text-align: center;
    background-color: white;
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    box-shadow: #33333379 2vh 2vh 5vh;
    border-radius: 1.5vh;
    background-color: var(--bt-greish);
}

.create-alert span {
    margin: 3vh 2vw;
    margin-bottom: 0;
    font-size: 1.7vh;
    font-weight: bold;
}

.alert-mail.input-field {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70%;
    margin: 3vh 0;
    font-size: 2.3vh;
}

.create-alert .cross {
    position: absolute;
    width: 2vh;
}

.create-alert .cross {
    width: 2vh;
    position: absolute;
    transform: translate(-60%, -40%);
}

.create-alert .cross:hover {
    cursor: pointer;
}

.create-alert .top-right {
    width: 0;
    height: 0;
    align-self: flex-end;
    position: relative;
}

.create-alert .options {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.5vh;
}

.create-alert .option {
    font-family: inherit;
    font-size: 1.5vh;
    background-color: var(--bt-gray);
    color: white;
    padding: 1vh 2vh;
    border-radius: .7vh;
    margin: 1vh 1.5vh;
    font-weight: bold;
    border: none;
}

.create-alert .option:hover {
    background-color: var(--bt-hover-gray);
    cursor: pointer;
}


.newsletter {
    margin: auto;
    display: none;
    flex-direction: column;
    align-items: center;
    width: 35vw;
    text-align: center;
    background-color: white;
    border: 4px solid var(--bt-darkgray);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
    box-shadow: #33333379 8px 12px 10px;
}

.newsletter .top-right {
    width: 3px;
    height: 3px;
    align-self: flex-end;
    position: relative;
}

.newsletter h2 {
    font-size: 2vh;
    font-weight: bold;
    margin: 2vh 2vw;
}

.newsletter .email-input {
    font-family: inherit;
    font-size: 1.9vh;
    width: 70%;
    height: 30px;
    margin: 2vh 0;
    border: 2px solid var(--bt-gray);
    border-radius: 5px;
    padding: 5px 0;
    text-align: center;
    background-color: var(--bt-greish);
}

.newsletter .cross {
    width: 2vh;
    position: absolute;
    transform: translate(-50%, -50%);
}

.newsletter .cross:hover {
    cursor: pointer;
}

.submit-newsletter {
    width: 50%;
    height: 4.5vh;
    background-color: var(--bt-darkgray);
    color: var(--bt-blue);
    border: none;
    font-size: 1.9vh;
    border-radius: 5px;
    font-weight: bold;
    transition: 0.15s;
    margin: 2vh 2vh;
}



.newsletter .logos {
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;
    margin: 2vh 0;
}

.newsletter .logos .logo {
    height: 11vh;
}

.newsletter .logos .letter {
    height: 9vh;
}

.submit-newsletter:hover {
    background-color: var(--bt-hover-gray);
    cursor: pointer;
}

.checked-box {
    width: 1vw;
    height: 1vw;
    display: flex;
    padding: .2vw;
    justify-content: center;
    align-items: center;
    border: .1vh solid var(--bt-gray);
    border-radius: .5vh;
    margin-left: .4vh;
}

.blue-check {
    width: 100%;
}

.total-price-div {
    display: flex;
    flex-direction: column;
    border: none;
    background-color: var(--bt-greish);
}

.show-more-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex-direction: row;
    width: 100%;
}

.show-more-button {
    display: flex;
    padding: 1.5vh 2.5vh;
    padding: max(15px) max(25px);
    justify-content: space-evenly;
    width: fit-content;
    height: fit-content;
    font-size: 3vh;
    font-size: max(20px);
    margin: auto;
    background-color: var(--bt-gray);
    color: white;
    font-weight: bold;
    border: none;
    border-radius: 1vh;
    transition: 0.15s;
    align-items: center;

}

.show-more-button:hover {
    background-color: var(--bt-hover-gray);
    border-color: var(--bt-hover-blue);
    cursor: pointer;
}

.show-more-span {
    margin: auto 10px auto auto;
}


.show-more-angle {
    width: 3vh;
    width: max(23px);
    margin: auto auto auto 0;
    transition: .3s;
}

.show-more-angle.rotate {
    transform: rotate(180deg);
}

.save-money-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 3vh auto;
    width: fit-content;
    font-size: 1.8vw;
    border-radius: .4vh;
    font-weight: bold;
    background-color: var(--bt-blue);
    color: white;
    transition: 0.15s ease-in-out;
    padding: 1.5vh 2vh;
}

.save-money-container a {
    color: white;
}

.save-money-container:hover {
    cursor: pointer;
    background-color: var(--bt-hover-blue);
}

.arrow-span {
    font-size: 30px;
    margin: auto;
    margin-bottom: 30px;
}

@media screen and (min-width: 2000px) {
    .checked-box {
        padding: 5px;
        margin-left: 10px;
        border-width: 2px;
    }

    .blue-check {
        width: 20px;
    }
    
}



@media screen and (max-width: 1200px) {
    .checked-box {
        width: 1.2vw;
        height: 1.2vw;
        margin-left: .1vh;
        border-width: .13vh;
    }

    .blue-check {
        width: 100%;
    }


    .error-container {
        width: 60vw;
    }

    .error-container h1 {
        font-size: 2.5vw;
    }

    .error-container p {
        font-size: 1.8vw;
    }

    .error-container .reg {
        font-size: 2vw;
    }

    .error-container .stop {
        height: 8vw;
    }
}


@media screen and (max-width: 800px) {
    .pages-row-container {
        display: none;
    }

    .navbar-logo-container {
        width: 25vw;
    }

    .reg-input-container {
        width: 20vw;
    }

    .reg-input {
        width: 20vw;
    }

    .show-more-button {
        font-size: 1.5vh;
        padding: 1vh 2vh;
        font-size: max(2.5vw);
        padding: max(.6vh) max(1vh);
        border-radius: max(1vw);
    }

    .show-more-angle {
        width: 1.5vh;
    }


    nav {
        height: 9vh;
    }

    body {
        margin-top: 9vh;
        padding-bottom: 24vh;
    }

    footer {
        height: 13vh;
    }
    
}

