/* Styles for purchase */
#payment-successful {
    margin-top: 80px;
    min-height: 90vh;
    color: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

#payment-content {
    font-family: 'Montserrat', sans-serif;
    position: relative;
    width: 50vw;
    /* height: 50vh; */
    padding: 3em 2em;
    border-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

#payment-content h1 {
    font-size: 3em
}

#payment-content > p {
    font-size: 1.8em;
    margin-bottom: 30px;
}

#refund {
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: left;
}

#refund p {
    font-size: 1.2em;
    margin-bottom: 10px;
}

#refund span {
    font-weight: bold;
    /* font-style: italic; */
}

#subscribe {
    margin-top: 20px;
    margin-bottom: 20px;
}

#subscribe label {
    margin-right: 0.2em;
}

#subscribe button {
    width: 70px;
    margin-left: 1em;
    cursor: pointer;
    border: none;
    padding: 0.3em 1em;
    border-radius: 10px;
    color: white;
    background-color: #8097E2;
    transition: all 0.3s ease;
}

#subscribe button:hover {
    background-color: #6374AF;
    transition: all 0.3s ease;
}

#go-back-link {
    padding-right: 2em;
    padding-bottom: 1em;
    position: absolute;
    bottom: 0;
    right: 0;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
}


#go-back-link a {
    text-decoration: none;
    padding: 10px 15px;
    font-family: 'Cabin', sans-serif;
    background-color: #6678B1;
    font-size: 1em;
    color: white;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

#go-back-link a:hover {
    background-color: #404B70;
    transition: all 0.3s ease;
}




/* Styles for destination */
#destination-page {
    margin-top: 8vh;
    min-height: 857px;
}

#destination-page-main {
    position: relative;
    display: flex;
    justify-content: center;
    text-align: center;
}

#destination-page-main h1 {
    /* margin: auto; */
    font-family: 'Cabin', sans-serif;
    position: absolute;
    top: 45%;
    font-size: 3.5em;
    
}

/* #destination-page-main {
    width: 100vw;
} */

#destination-page-main-image {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    /* height: 100%; */
    overflow: hidden;
}

#destination-page-main-image img {
    height: 100%;
}

.destination-introduction {
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 50px 10px;
    padding: 0 100px;

}

#Kilimanjaro {
    flex-wrap: wrap-reverse;
}

.destination-photos {
    /* margin: 20px 0; */
    overflow: hidden;
    width: 35vw;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    margin-bottom: 20px;
}

.destination-photos img {
    height: 100%;
    width: 100%;
    
}

.destination-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 700px;
    color: black;
    margin-bottom: 20px;
}

.destination-details h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 3.5em;
    /* padding: 20px 0; */
    margin: 20px 0;
}

.destination-details p {
    font-family: 'PT Serif', serif;
    font-size: 1.5em;
}


.select-as-destination {
    margin: 30px 0;
    font-family: 'Lato', sans-serif;
    font-size: 1em;
    border: none;
    padding: 10px 10px;
    background-color: #2F3855;
    color: white;
    width: 200px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.select-as-destination:hover {
    background-color: #6678B1;
    transition: all 0.3s ease;
}



/* Extra styles for sports detail */
.sports-page-content {
    margin-top: 8vh;
    position: relative;
    min-height: 857px;
}

.sports-page-content a {
    font-family: 'Lato', sans-serif;
    position: fixed;
    top: 80px;
    background-color: #4D63AB;
    color: white;
    padding: 5px 10px;
    text-decoration: none;
    z-index: 10;
}

.sports-page-content section{
    display: flex;
    flex-wrap: wrap;
}

.sports-page-container {
    padding: 35px 50px;
    display: flex;
    align-items: center;
    justify-content: space-around;

}

.sports-page-image {
    margin-bottom: 20px;
    overflow: hidden;
    height: 800px;
    width: 800px;
    box-shadow: 0px 10px 39px 10px rgba(62,66,66,0.22);
}

.sports-page-image img {
    width: 100%;
}

.introduction {
    margin-bottom: 20px;
    padding: 2em 6em;
    width: 700px;
    background-color: #7493CC;
    color: white;
}

.introduction h1 {
    padding: 20px 0;
    font-family: 'Cabin', sans-serif;
    font-size: 3.5em;
    align-items: center;
    
    /* z-index: 10; */
}

.introduction p {
    /* color: black; */
    font-family: 'Lato', sans-serif;
    padding: 0.5em 0;
    font-size: 1.4em;
}


.sport-add-to-list {
    font-family: 'Montserrat', sans-serif;
    margin: 30px 0;
    font-size: 1em;
    border: none;
    padding: 10px 10px;
    background-color: #2F3855;
    color: white;
    width: 140px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.sport-add-to-list:hover {
    background-color: #1E2639;
    transition: all 0.3s ease;
}

/* Style for Book */
#book-content {
    position: relative;
    top: 8vh;
    padding: 30px;
    margin-bottom: 100px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-direction: column;
    color: black;
    background-color: white;
    /* margin-bottom: 10px; */
    
}

/* .login-content img {
    position: absolute;
    z-index: 0;
    width: 100%;
    height: 90vh;
} */

.book-container {
    position: relative;
    display: flex;
    flex-direction: column;
    /* padding: 5vh 10vw 10vh 12vw; */
    /* width: 80%; */
    width: 70vw;
    padding: 50px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    border-radius: 20px;
    /* backdrop-filter: blur(10px);  */
    z-index: 1;
}

.book-container h2 {
    text-align: center;
    padding-bottom: 20px;
    color: black;
    font-family: 'Montserrat', sans-serif;
    font-size: 3rem;
    /* margin-bottom: 1.5vh; */
}

.book-main {
    padding: 0 50px;
}

.book-main h5 {
    font-family: 'Lato', sans-serif;
    font-size: 1.25em;
}

.book-details h3 {
    font-family: 'Cabin', sans-serif;
    font-size: 1.65em;
    margin: 20px 0;
}

.form-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* justify-content: space-around; */
    align-items: center;
}

.form-wrapper > div {
    margin-right: 50px;
}

#ExpirationDate-container {
    width: 350px;
}

#ExpirationDate {
    margin-left: 10px;
    height: 25px;
    
}

.form {
    color: black;
    position: relative;
    height: 50px;
    width: 350px;
    margin-bottom: 20px;
    
}

.form input {
    color: black;
    margin-top: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    font-size: 16px;
    background: transparent;
    border: none;
    outline: none;
}

.form label {
    color: #8D8D8D;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    pointer-events: none;
    border-bottom: 1px solid gray;
}

.label-text {
    position: absolute;
    bottom: 5px;
    left: 0px;
    transition: all 0.3s ease;
}

.form input:focus + .label-container .label-text, 
.form input:valid + .label-container .label-text{
    transform: translateY(-120%);
    font-size: 14px;
    color: #6678B1;
}

.radio-button-container {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.radio-button-container input[type="radio"] {
    display: none;
}

.radio-button-container label {
    position: relative;
    cursor: pointer;
}

.destination-radio-button {
    display: flex;  
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    width: 350px;
    height: 400px;
    /* padding: 20px 0; */
    border: 4px solid transparent;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 30px;
}

.radio-checked {
    position: absolute;
    top: -4px;
    background-color: #6678B1;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 1.5em;
    color: white;
    border-radius: 50%;
    z-index: 10;
    /* visibility: hidden; */
    opacity: 0;
}

.radio-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    width: 250px;
    height: 250px;
    border-radius: 50%;
    overflow: hidden;
}

.radio-image img {
    height: 100%;
}

.radio-location {
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
    font-family: 'Lato', sans-serif;
}


.radio-location img {
    height: 20px;
    width: 20px;
}

.radio-button-container input[type="radio"]:checked + label .destination-radio-button {
    border: 4px solid #6678B1;
    /* background-color: #6678B1; */
    color: black;
    transition: all 0.3s ease;
}

.radio-button-container input[type="radio"]:checked + label p {
    opacity: 1;
    transition: all 0.3s ease;
}

#find-flight {
    margin: 30px 0;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    text-align: center;
    vertical-align: middle;

}

#find-flight label {
    margin: 0 20px 10px 0;
    font-weight: bold;
    font-family: 'Lato', sans-serif;
    font-size: 1.35em;
}

#find-flight-button {
    cursor: pointer;
    font-family: 'Cabin', sans-serif;
    background-color: #6678B1;
    color: white;
    font-size: 1em;
    margin-left: 20px;
    padding: 5px 10px;
    border: none;
}


/* CSS for the available trip */
#flight-details-container h3 {
    font-size: 1.5em;
}

.flight-details {
    /* width: 100%; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    vertical-align: middle;
    padding: 5px 15px;
    margin-bottom: 25px;
    border: 2px solid gray;
    border-radius: 10px;
    
}

#flight-details-empty {
    padding: 0.5em 0.5em;
    font-size: 1.5em;
    /* font-weight: bold; */
}


.flight-details h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
    font-size: 1.5em;
}

.flight-details p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
}

.flight-details p span {
    padding: 0 5px;
    font-size: 1.15rem;
    font-weight: bold;
}

#sports-intensity > p {
    font-family: 'Lato', sans-serif;
    font-size: 1.2em;
    padding: 5px 0;
}

#sports-intensity > p span {
    
    font-weight: bold;
}


/* Styles for sports intensity level */
#choose-sports-intensity-level {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: center;
    justify-content: center;
    padding: 25px 0;
}

#choose-sports-intensity-level h6 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2em;
    /* margin-left: 25px; */
    margin-right: 30px;
}

#sports-intensity-level-radio {
    padding: 6px 10px;
    border: 1px solid beige;
    border-radius: 20px;
    display: flex;
    flex-direction: row;
    width: 380px;
    justify-content: space-between;
}

#sports-intensity-level-radio input[type="radio"] {
    display: none;
}

#sports-intensity-level-radio label {
    cursor: pointer;
}

.radio-text {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 160px;
    /* padding: 0 10px; */
    border: 2px solid gray;
    border-radius: 15px;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.radio-circle {
    width: 20px;
    height: 20px;
    border: 2px solid gray;
    border-radius: 50%;
}

.radio-text p {
    /* color: gray; */
    font-family: 'Cabin', sans-serif;
    padding: 10px;
}

#sports-intensity-level-radio input[type="radio"]:checked + label .radio-text {
    border: 2px solid #6678B1;
    background-color: #6678B1;
    /* background-color: #6678B1; */
    color: white;
    transition: all 0.3s ease;
}

#sports-intensity-level-radio input[type="radio"]:checked + label .radio-circle {
    border: 4px solid #48557D;
    /* background-color: #6678B1; */
    /* color: white; */
    transition: all 0.1s ease;
}


/* Styles for checkbox */
.sports-checkbox-container {
    margin: 20px 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.sports-checkbox-container input[type="checkbox"] {
    display: none;
}

.sports-checkbox-container label {
    position: relative;
    cursor: pointer;
}

.sports-checkbox {
    display: flex;  
    align-items: center;
    justify-content: center;
    margin: 10px 0;
    width: 350px;
    height: 400px;
    /* padding: 20px 0; */
    border: 4px solid transparent;
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-radius: 30px;
}

.checkbox-checked {
    position: absolute;
    top: -4px;
    background-color: #6678B1;
    width: 30px;
    height: 30px;
    text-align: center;
    font-size: 1.5em;
    color: white;
    border-radius: 50%;
    z-index: 10;
    /* visibility: hidden; */
    opacity: 0;
}

.checkbox-image {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    width: 250px;
    height: 250px;
    /* border-radius: 50%; */
    border-radius: 20px;
    overflow: hidden;
}

.checkbox-image img {
    height: 100%;
}

.sports-checkbox-title {
    font-family: 'Cabin', sans-serif;
    position: relative;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-top: 15px;
}

.checkbox-sports-price {
    padding: 0 5px;
    font-family: 'Montserrat', sans-serif;
    font-weight: bold;
}


.sports-checkbox-container input[type="checkbox"]:checked + label .sports-checkbox {
    border: 4px solid #6678B1;
    /* background-color: #6678B1; */
    color: black;
    transition: all 0.3s ease;
}

.sports-checkbox-container input[type="checkbox"]:checked + label p {
    opacity: 1;
    transition: all 0.3s ease;
}

#accommodation-detail {
    padding: 0 30px;
}

#accommodation-detail h6 {
    padding: 0 20px 10px 30px;
    font-family: 'Cabin', sans-serif;
    font-size: 1.5em;
}

#accommodation-detail p {
    font-family: 'Lato', sans-serif;
    padding: 5px 30px;
    font-size: 1.2em;
}

#accommodation-detail p span {
    font-weight: bold;
}

#camping-image {
    margin-top: 20px;
    /* width: 70vw; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* justify-content: flex-start; */
    padding: 0px 30px 10px 30px;
    
}

#camping-image > div {
    margin-right: 50px;
    margin-bottom: 30px;
}

#camping-image div {
    height: 200px;
    min-width: 300px;
    /* margin: 10px 0px; */
    /* border: 2px solid gray; */
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    box-shadow: rgba(0, 0, 0, 0.25) 0px 14px 28px, rgba(0, 0, 0, 0.22) 0px 10px 10px;
    border-radius: 10px;
    overflow: hidden;
}

#camping-image div img {
    height: 100%;
    transition: all 0.3s ease;
}

#camping-image div img:hover {
    transform: scale(1.1);
    transition: all 0.3s ease;
}


#book-total-price {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
    text-align: center;
    vertical-align: middle;
    border: 2px solid gray;
    padding: 5px 0px;
    border-radius: 10px;
    /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
    margin-bottom: 10px;
}

#book-total-price > p {
    font-size: 1.6em;
}

.book-price-calc-title p:first-of-type {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2em;
    font-weight: bold;
}

.book-price-calc-title p:last-of-type {
    font-family: 'Lato', sans-serif;
}

#book-purchase-button-container {
    margin: 10px 0;
    width: 100%;
    display: flex;
    /* justify-content: flex-end; */
}

#book-purchase-button {
    cursor: pointer;
    padding: 10px 15px;
    font-family: 'Cabin', sans-serif;
    background-color: #6678B1;
    font-size: 1em;
    color: white;
    border: none;
    border-radius: 20px;
    transition: all 0.3s ease;
}

#book-purchase-button:hover {
    background-color: #404B70;
    transition: all 0.3s ease;
}









