@font-face {
    font-family: ExtraBold;
    src: url(../fonts/Montserrat-ExtraBold.ttf);
}

@font-face {
    font-family: Bold;
    src: url(../fonts/Montserrat-Bold.ttf);
}

@font-face {
    font-family: Reg;
    src: url(../fonts/Montserrat-Regular.ttf);
}

@font-face {
    font-family: Light;
    src: url(../fonts/Montserrat-Light.ttf);
}



:root {
    --dark: #111113;
    --grey: #646464;
    --pink: #fb0cfc;
    --darker: #090909;
    --purple: #9f00ff;
    --white: #d7d7d7;
}

html body {
    background-image: url(../images/background.jpg);
    background-size: cover; 
    background-attachment: fixed;
    background-repeat: no-repeat;
    margin: 0;
    overflow-y: overlay;
    padding: 0;
  }


  
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--dark)

}
  
  /* Handle */
::-webkit-scrollbar-thumb {
    background: var(--pink);
}
  
  /* Handle on hover */
::-webkit-scrollbar-thumb:hover {
    background: var(--dark);
}








/* Start of Navbar */

.navbar {
    position: fixed;
    top: 0;
    width: 95%;
    padding: 0 2.5%;
    height: 80px;
    font-family: Light;
    background-color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    top: 0;
    z-index: 999;
    overflow: hidden;
    transition: height 300ms ease-in-out;
}

.main-nav {
    position: fixed;
    display: flex;
    top: 0;
    right: 0;
    flex-wrap: wrap;
    width: 95%;
    padding: 0 2.5%;
    height: 80px;
    align-items: center;
    justify-content: space-between;
}
.logo {
    margin-right: auto;
}

.logo img{
    height: 35px;
}

.links {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 70%;
    max-width: 40rem;
    margin-right: 2%;
}

.link-item {
    display: flex;
    align-items: center;
}

.link-item a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
}

.link-item svg {
    fill: white;
    margin-left: 5px;
    margin-right: 10px;
}

.selected svg {
    fill: var(--pink);
}

.selected a {
    color: var(--pink);
}

.link-item:hover a{
    color: var(--pink);
}

.link-item:hover svg{
    fill: var(--pink);
}

.store-items {
    border-top: thin solid var(--grey);
    top: 5rem;
    right: 0;
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    height: 5rem;
    width: 100%;
    background-color: var(--dark);
}

.store-items a {
    margin: 0 1rem;
    text-decoration: none;
    color: white;
}


.nav-border {
    height: 35px;
    width: 1px;
    margin-right: 2%;
    background-color: var(--grey);
}

a {
    text-decoration: none;
}

.cart {
    display: flex;
    width: 40px;
    height: 20px;
    align-items: center;
    justify-content: space-between;
}

.cart a {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.cart-number {
    margin: 0;
    color: white;
    font-size: 15px;
}

.cart a svg path{
    fill: white;
    padding: 0;
    margin: 0;
}

.cart a:hover svg path {
    fill: var(--pink);
}

.mobile-nav {
    display: none;
    height: 100%;
}

.mobile-icon {
    height: 30px;
    z-index: 999;
}

.mobile-bar {
    height: 1px;
    margin-bottom: 10px;
    background-color: white;
    width: 28px;
    transition: transform ease-in-out 250ms, opacity ease-in 100ms;
}

.mobile-icon-active .mobile-bar:nth-child(3) {
    opacity: 0;
}

.mobile-icon-active .mobile-bar:nth-child(2) {
    transform: rotate(45deg);
}
.mobile-icon-active .mobile-bar:nth-child(1) {
    transform: translateY(11px) rotate(-45deg);
}


.mobile-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    z-index: 990;
    background-color: var(--dark);
    transform: translateX(100%);
    width: 50%;
    height: 100vh;
    border-left: thin solid var(--pink);
    transition: transform ease-in-out 300ms;
}

.mobile-cart {
    display: flex;
    align-items: center;
    width: 70px;
    margin-left: 15px;
    margin-top: 26px;
}

.mobile-cart a{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.mobile-cart svg {
    margin-right: 10px;
}

.mobile-cart h1 {
    color: white;
    font-size: 15px;
}

.mobile-cart a svg path{
    fill: white;
    padding: 0;
    margin: 0;
}

.mobile-cart svg:hover  path{
    fill: var(--pink);
}



.mobile-sidebar-active {
    transform: translateX(0%);
}

.mobile-links {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 100%;
    height: 50%;
    flex-direction: column;
    margin-top: 5rem;

}
.mobile-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 9rem;
    height: 3rem;
    border: thin solid var(--purple);
    border-radius: 10px;
    margin-bottom: 1rem;
}

.mobile-link-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
}

.mobile-link-item svg {
    height: 25px;
    margin-right: 10px;
}

.mobile-selected svg path {
    fill: var(--pink);
}

.mobile-selected a {
    color: var(--pink);
}

@media only screen and (max-width: 600px) {
    .mobile-nav {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: row;
    }

    .logo img{
        height: 25px;
    }

    .nav-border {
        display: none;
    }

    .links {
        display: none;
    }

    .cart {
        margin: 0 25px 5px 0;
    }
  }


/* End of Navbar */



/* Start of Mini-Nav */

.mini-nav {
    display: flex;
    align-items: center;
    justify-content: start;
    width: 95%;
    padding: 0 2.5%;
    gap: 0 5px;
    height: 5rem;
    margin-top: 5rem;
}

.mini-nav p {
    font-family: Light;
    font-size: 15px;
    text-decoration: none;
}

.mini-nav {
    color: white;
}

.mini-nav p a:not(.mini-selected) {
    color: white;
    text-decoration: none;
}

.mini-selected {
    color: var(--pink);
}

/* End of Mini-Nav */


.main-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    align-items: start;
    flex-direction: row;
}



@media only screen and (max-width: 1550px) {
    .main-container {
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    .left-container {
        display: flex;
        width: 100%;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }
    
}


/* Start of Provider Header */
.provider-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60rem;
    min-height: 15rem;
    padding: 1rem;
    border-radius: 20px;
    margin-left: 3rem;
    border: thin solid var(--pink);
    background-color: var(--dark);
}

.provider-info-container {
    width: 100%;
    height: 100%;
}

.provider-header img {
    height: 100%;
    margin-bottom: auto;
    margin-right: 1rem;
}

.provider-top {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: auto;
    border-bottom: thin solid var(--pink);
}

.provider-header-info {
    height: 100%;
}

.provider-status {
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 0 2rem;
    height: 2rem;
}

.provider-status p{
    color: white;
    font-size: 15px;
    font-family: Reg;
}

.provider-status span {
    margin-left: 7px;
}


.cheat-status {
    color: green;
}

.provider-name {
    color: white;
    font-size: 2.5rem;
    margin: .5rem 0;
    font-family: Bold;
}

.provider-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: .8rem;
    border-radius: 10px;
    background-color: var(--dark);
    border: thin solid var(--purple);
}

.provider-rating p:not(.cheat-review) {
    color: var(--grey);
    font-size: 1.5rem;
    margin: 0;
    font-family: Bold;
}

.cheat-review {
    color: var(--pink);
    font-size: 1.5rem;
    font-family: Bold;
}


.provider-description {
    height: 100%;
    width: 100%;
}

.provider-description p{
    color: var(--grey);
    font-size: 15px;
    font-family: Reg;
}

@media only screen and (max-width: 1550px) {
    .provider-header {
        margin: 0;
    }
    .provider-info-container {
        width: 100%;
        height: 100%;
    }
    
}


@media only screen and (max-width: 1200px) {
    
    .provider-header {
       width: 90%;
    }

    .provider-name {
        color: white;
        font-size: 3vw;
    }

    .provider-status {
        display: flex;
        align-items: center;
        justify-content: start;
        gap: 0 1.5vw;
        height: 2rem;
    }
    .provider-info-container {
        margin-top: 1rem;
    }
    
    .provider-rating p:not(.cheat-review) {
        font-size: 2vw;
    }
    .cheat-review {
        font-size: 2vw;
    }
}

@media only screen and (max-width: 950px) {
    .provider-header {
        flex-direction: column;
        width: 25rem;
     }

    .provider-header {
        flex-wrap: wrap;
    }

    .provider-status {
        gap: 0 1rem;
        height: 2rem;
    }
    .provider-name {
        font-size: 1.7rem;
    }

    
    .provider-status p{
        font-size: 13px;
    }
    
    .provider-status span {
        margin-left: 7px;
    }
    
    .provider-rating p:not(.cheat-review) {
        font-size: 1.5rem;
    }
    
    .provider-rating {
        margin-top: 1rem;
        padding: .4rem;
        border-radius: 8px;
    }
    
    .provider-rating p:not(.cheat-review) {
        font-size: 1rem;

    }
    
    .cheat-review {
        color: var(--pink);
        font-size: 1rem;
        font-family: Bold;
    }
    
    .provider-description p{
        font-size: 15px;
    }

}


/*  End of Provider Header */


/* Start of Provider Media */
.provider-media {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 62rem;
    height: 20rem;
    margin-left: 3rem;
}

.provider-media button {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: .5rem;
    aspect-ratio: 1/1;
    color: var(--purple);
    font-size: 20px;
    margin: 0;
    border-radius: 100%;
    border: thin solid var(--pink);
    background-color: var(--dark);
}

.slider-container {
    width: 100%;
    display: flex;
    justify-content: center;
    overflow-x: hidden;
}

.media-slider {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.3s ease; /* Add a smooth transition effect */
}

.media-container {
    display: flex;
    justify-content: center;
    min-width: 50%;
}

.media {
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    width: 90%;
    border-radius: 10px;
    border: thin solid var(--pink);
    background-color: var(--dark);
    aspect-ratio: 16/9;
}

.media img {
    object-fit: cover;
    min-height: 100%;
    min-width: 100%;

}




@media only screen and (max-width: 1550px) {
    .provider-media {
        margin: 0;
    }

    
}

@media only screen and (max-width: 1200px) {

    .provider-media {
        width: 80%;
    }


    
    
}

@media only screen and (max-width: 700px) {
    
    .provider-media {
        width: 90%;
    }

    .media-container {
        min-width: 100%;
    }

    

}



/* End of Provider Media */


/* Start of Checkout */
.checkout {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: start;
    background-color: var(--dark);
    width: 30rem;
    height: fit-content;
    padding: 2rem;
    border-radius: 20px;
    margin: 0rem 3rem auto 3rem;
    border: thin solid var(--pink);
}

.checkout-title {
    color: var(--grey);
    margin: 0 auto 1.5rem 0;
    font-family: Reg;
}
.key-option {
    display: flex;
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0 5%;
    margin-bottom: 3rem;
    background-color: var(--dark);
    height: 5rem;
    border-radius: 10px;
    border: thin solid var(--purple);
    cursor: pointer;
}

.key-option:not(.key-selected):hover {
    background-color: var(--darker);
}

.key-text {
    text-align: left;
}

.key-text h1 {
    color: white;
    font-family: Bold;
}

.key-text p {
    color: var(--grey);
    font-family: Reg;
}

.key-info {
    text-align: right;
}

.key-info h1 {
    font-family: Bold;
    color: white;
}

.key-info p{
    font-family: Reg;
    color: green;
}

.key-selected {
    cursor: auto;
    background-color: var(--pink);
}

.key-selected h1 {
    color: var(--dark);
}

.key-selected p {
    color: var(--dark);
}

.checkout-purchase {
    display: flex;
    align-items: center;
    justify-content: end;
    width: 100%;
    height: 4rem;

}


.purchase {
    display: flex;
    align-items: center;
    justify-content: space-around;
    height: 3rem;
    padding: 1rem;
    font-family: Bold;
    font-size: 1rem;
    width: 10rem;
    color: white;
    border: 0;
    background-color: var(--pink);
    border-radius: 10px;
    cursor: pointer;
    transition: background-color ease-in-out 150ms;
}

.purchase:hover {
    background-color: var(--purple);
}

.purchase svg {
    margin-right: 1rem;
}

@media only screen and (max-width: 1550px) {
    .checkout {
        display: flex;
        align-items: center;
        flex-direction: column;
        justify-content: start;
        background-color: var(--dark);
        width: 30rem;
        height: fit-content;
        padding: 2rem;
        border-radius: 20px;
        margin: 0rem 3rem auto 3rem;
        border: thin solid var(--pink);
    }
    
    
}

@media only screen and (max-width: 950px) {
    .checkout {
       width: 75%;
    }
    
    
}

@media only screen and (max-width: 700px) {
    
}
  

/* End of Checkout */



/* Start of Provider Info */
.provider-tabs {
    display: flex;
    gap: 0 3rem;
    align-items: center;
    margin-left: 3rem;
    flex-direction: row;
}

.provider-tab {
    padding: .5rem 2rem;
    cursor: pointer;
    z-index: 10;
    color: white;
    font-family: Bold;
    background-color: var(--dark);
    transform: translateY(1px);
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    border-bottom: 0;
    border-top: thin solid var(--purple);
    border-right: thin solid var(--purple);
    border-left: thin solid var(--purple);
}

.tab-selected {
    color: var(--pink);
}


.provider-info {
    width: fit-content;
    padding: 1rem;
    z-index: 9;
    border-top-right-radius: 20px;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
    border: thin solid var(--purple);
    margin-left: 3rem;
    margin-bottom: 5rem;
    background-color: var(--dark);
}

.features {
    width: 60rem;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    max-height: 50rem;
    overflow-y: overlay;
    
}

.feature li:not(.feature-title){
    color: var(--grey);
    font-family: Reg;
    list-style-type: none;
}

.feature-title{
    font-family: Bold;
    margin-bottom: .5rem;
    list-style-type: none;
    color: white;
}

.features ul{
    margin: 1rem;
    padding: 0;
}

.requirements {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
}

.requirement-item {
    display: flex;
    align-items: center;
}

.requirement-text {
    display: flex;
    flex-direction: column;
    justify-content: end;
    color: var(--grey);
    font-family: Reg;
    font-size: 10px;
    min-width: 10rem;
    margin: 1rem 2rem 1rem .5rem;
}



.requirement-text h1 {
    margin: 0;
    padding: 0;
}

.requirement-title {
    color: white;
}

.requirements svg path{
    fill: white;
}


.info {
    display: flex;
    align-items: center;
    justify-content: start;
    flex-wrap: wrap;
    max-width: 60rem;
}

.info-item {
    display: flex;
    align-items: center;
    margin-top: 11px;
    margin-right: 2rem;
}

.info-title {
    color: var(--grey);
    font-family: Reg;
    font-size: 15px;
    color: white;
    margin-left: 1rem;
}

.info svg path{
    fill: white;
}
.info svg g{
    fill: none;
    stroke: white;
}

@media only screen and (max-width: 1550px) {
    .features {
        width: 80vw;
        margin-left: 0;
    }

    .provider-tabs {
        width: 80vw;
        margin-right: calc(5rem + 2px);
    }

    .provider-info {
        margin-left: 0;
    }
    .requirements {
        width: 80vw;
    }
    .info {
        max-width: 80vw;
        width: 80vw;
    }
    
    .tab-selected {
        color: var(--pink);
    }

    
    .provider-tab {
        padding: .7rem 1.2rem;
        font-size: 13px;
    }
    
}

@media only screen and (max-width: 950px) {
    .provider-tabs {
        gap: 0 1.5rem;
    }

    .requirements {
        justify-content: center;
    }
    
}

@media only screen and (max-width: 700px) {
    
    .provider-tabs {
        gap: 0 1rem;
    }
}

/* End of Provider Info */




/* Start of Footer */

footer {
    position: relative;
    background-color: var(--dark);
    bottom: 0;
    margin-top: 10rem;
    width: calc(100% - 5rem);
    padding: 4rem 2.5rem;
}

.footer-container {
    display: flex;
    flex-direction: row;
    width: 100%;
    max-width: 150rem;
    margin: auto;
}

.footer-info {
    width: 25rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    flex-direction: row;
}

.footer-logo img {
    height: 35px;
}

.footer-logo h1 {
    color: var(--white);
    font-size: 18px;
    margin: 0 0 0 15px;
    font-family: ExtraBold;
}

.footer-info p{
    color: var(--grey);
    font-family: Reg;
}

.footer-navigation {
    display: flex;
    align-items: start;
    justify-content: space-between;
    flex-direction: row;
    margin-left: auto;
    width: 60rem;
}

.footer-navigation ul {
    min-width: 10rem;
    margin-top: 6px;
    list-style-type: none;
}

.list-title {
    margin-bottom: 20px;
    font-family: ExtraBold;
    color: var(--white);
}

.footer-navigation ul li a {
    color: var(--grey);
}

.footer-navigation ul li:not(.list-title) {
    color: var(--grey);
    font-family: Reg;
}

@media only screen and (max-width: 1000px) {
    .footer-info {
        margin-right: auto;
        margin-bottom: 2rem;
    }
    .footer-container {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        max-width: 150rem;
        margin: auto;
    }
    .footer-navigation {
        margin: 0;
        justify-content: start;
        flex-wrap: wrap;
        width: 100%;
    }
  }

/* End of Footer */