/* SEARCH */
.w-20 {
    width: 20%;
}

.w-60 {
    width: 60%;
}

/* FORMATTING */



/* TRIPS */
.trips-container{
    height: 100%;
    padding: 4rem 8rem;
    display: flex;
    flex-direction: column;
    flex : 1;
    width: 100vw;
    gap: 1rem;
}

.trip-container:hover {
    box-shadow: 0px 5px 5px -5px var(--quad-bg);
}

.trip-container {
    height: 220px;
    font-size: 36px;
    background-color: var(--c6);
    color: var(--c1);
    justify-content: space-between;
    display: flex;
    align-items: center;
    border-radius: 2rem;
    padding: 1rem 1rem;
    border: none;
    cursor: pointer;
    box-shadow: none;
    transition: 0.15s ease-in-out;
}

.trip-image-wrapper {
    /* width: 400px; */
    height: 100%;
}

.trip-image {
    height: calc(220px - 2rem);
    width: calc(220px - 2rem);
    border-radius: 24px;
    object-fit: cover;
    object-position: center;
    display: block;
}

.trip-info {
    padding-left: 1rem;
    width: 100%;
    height: 100%;
    vertical-align: top;
    justify-content: space-between;
    display: flex;
    flex-direction: row;
    text-align: left;
}

.trip-info-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    max-width: 100%;
    justify-content: left;
}   

.trip-wrapper {
    height: 100vh;
    margin: 7rem;
    width: 80%;
}

.trip-home-header {
    font-size: 36px;
    font-weight: 500;
}

.trip-home-line {
    font-size: 18px;
    font-weight: 400;
}

.trip-header {
    display: flex;
    flex-direction: columnf;
    justify-content: space-between;
    font-size: 36px;
    border-radius: 1rem;
    gap: 1rem;
}

.trip-edit-buttons-wrapper {
    width: calc(40% + 1rem);
}

.trip-edit-button {
    width: 20%;
}

.trip-body {
    width: 100%;
    padding: 1rem;
}

.trip-column {
    width: calc((100% - 1rem) / 2);
    gap: 2rem;
}

.trip-content-block {
    display: flex;
    flex-direction: column;
}

.trip-content-header {
    background: var(--tea-green);
    font-size: 24px;
    justify-content: space-between;
    display: flex;
    padding: 0.5rem;
    border-radius: 0.5rem 0.5rem 0 0;
}


.trip-content-body {
    background: var(--tea-green);
    border-radius: 0 0 0.5rem 0.5rem;
    padding: 0.5rem;
    padding-top: 1rem;
}

.trip-content-body-row {
    min-height: 1rem;
    border-top: 1px var(--eerie-black) solid;
    /* border: 1px var(--eerie-black) solid; */
    padding: 0.1rem;
    font-size: 20px;
    display: flex;
    justify-content: space-between;
}

.trip-content-body-row .btn {
    min-height: 1rem;
    height: 1rem;
}

.trip-content-body-row .btn i {
    color: var(--eerie-black);
}

@media (max-width: 768px) {
    .trips-container {
        padding: 24px;
    }

    .trip-container {
        font-size: 32px;
        height: 120px;
        border-radius: 1rem;
        padding: 12px 12px;
    }

    .trip-image {
        height: calc(120px - 24px);
        width: calc(120px - 24px);
        border-radius: 4px;
    }

    .trip-info {
        padding-left: 8px;
        vertical-align: top;
    }

    .trip-info-left {
        gap: 0px;
    }   

    .trip-home-header {
        font-size: 18px;
    }

    .trip-home-line {
        font-size: 14px;
    }

    .trip-wrapper {
        height: 100vh;
        margin: 0px 24px;
        width: 100%;
        gap: 0px;
    }

    .trip-header {
        display: flex;
        justify-content: space-between;
        font-size: 26px;
        border-radius: 0rem;
        padding-top: 2rem;
        padding-bottom: 2rem;
        margin-bottom: 1rem;
        border-bottom: 2px solid var(--c6);
    }

    .trip-content-block {
        padding-bottom: 2rem;
        padding-top: 1rem;
        border-bottom: 2px solid var(--c6);
    }

    .trip-column {
        width: 100%;
        gap: 1rem;
    }

    .mobile-text {
        display: none;
    }
    
    .row-editing-buttons {
        min-width: fit-content;
    }

    .trip-edit-button {
        width: 100%;
    }

    .trip-edit-buttons-wrapper {
        width: 100%;
    }
}

.fa {
    color: #FFF;
}

a {
    color: blue;
}

/* LOGIN */
.login-logo {
    height: 80px;
}