﻿@charset "utf-8";

/* Basics Start */

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    text-align: left;
    background-color: #FFFFFF;
}

h1,
h2 {
    font-family: 'Libre Baskerville', serif;
    margin: 0;
    color: #145041;
}

h1 {
    font-size: 3.5rem;
}

h2 {
    font-size: 2.2rem;
}

.swal2-header h2 {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

h3 {
    font-size: 1.8rem;
    margin-top: 0;
    margin-bottom: .5rem;
    font-weight: 400;
}

textarea:focus,
input:focus,
select:focus {
    outline: none;
}

.container-main {
    position: relative;
    height: 100%;
    width: 100%;
}

.content-container {
    position: relative;
    margin-top: 4rem;
    width: 100%;
    height: 100%;
}

.space {
    display: block;
    height: 1rem;
}

.scrollspy {
    position: relative;
    padding-top: 4rem;
    margin-top: -4rem;
}

/* Basics End */

/* Flex Grid Start */

.row {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.row-center {
    justify-content: center;
    align-content: center;
}

.col {
    position: relative;
    width: 100%;
    padding-right: 1rem;
    padding-left: 1rem;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-table {
    position: relative;
    width: 100%;
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

/* Flex Grid End */

/* Floating Labels Start */

.ffl-wrapper {
    position: relative;
    display: block;
    padding-top: 1rem;
}

    .ffl-wrapper .ffl-label {
        transition-property: all;
        transition-duration: 200ms;
        transition-timing-function: ease;
        transition-delay: 0s;
        position: absolute;
        white-space: nowrap;
        max-width: 100%;
        text-overflow: ellipsis;
        overflow: hidden;
        pointer-events: none;
        top: 1.25rem;
    }

    .ffl-wrapper.ffl-floated .ffl-label {
        top: 0;
    }

.ffl-label {
    color: #909090;
    line-height: 1.2;
}

.ffl-floated .ffl-label {
    color: #417E6F;
    font-size: 0.75rem;
}

input,
textarea,
select {
    transition: border-bottom 100ms ease;
    display: block;
    width: 100%;
    padding: 0;
    margin-bottom: 1rem;
    box-shadow: none;
    appearance: none;
    outline: none;
    background-color: transparent;
    border-style: none;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgba(0, 0, 0, 0.2);
    height: 1.875rem;
}

    input:hover,
    textarea:hover,
    select:hover {
        border-bottom-width: 1px;
        border-bottom-color: #909090;
    }

    input:focus,
    textarea:focus,
    select:focus {
        border-bottom-width: 1px;
        border-bottom-color: #417E6F;
    }

textarea {
    resize: none;
    min-height: 1.875rem;
}

label > span {
    color: #cccccc;
}

[type="submit"] {
    transition: background-color 0.3s ease;
    border: none;
    background-color: #417E6F;
    color: #ffffff;
    padding: 0.5rem 1rem;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 1rem;
    float: right;
}

    [type="submit"]:hover, [type="submit"]:focus {
        background-color: #027bda;
    }

/* Floating Labels End */

/* Header Start */

.header {
    position: fixed;
    top: 0;
    left: 0;
    height: 4rem;
    width: 100%;
    box-shadow: 0 0 .6rem .15rem rgba(0, 0, 0, 0.3);
    z-index: 130;
    background-color: #145041;
}

.header-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.mobile-nav,
.nav-header-container,
.nav-contact {
    display: none;
}

.head-left {
    display: flex;
    flex: auto;
    align-items: center;
    padding-left: 3rem;
}

    .head-left a {
        color: #FFFFFF;
        font-size: 1.5rem;
        font-weight: 600;
        text-decoration: none;
    }

.links {
    display: flex;
    flex: auto;
    justify-content: flex-end;
    width: auto;
}

    .links ul {
        display: flex;
        height: 100%;
        list-style: none;
        margin: 0 3rem 0 0;
        padding: 0;
    }

.link {
    position: relative;
    display: flex;
    padding: 0 1.5rem;
    width: 100%;
    height: 100%;
    color: #FFFFFF;
    transition: .3s ease-out;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    justify-items: center;
    align-items: center;
}

    .link i {
        margin-right: .6rem;
        font-size: 1rem;
    }

.active {
    background-color: rgba(255,255,255,.08);
    box-shadow: inset 0 0 .2rem .1rem rgba(0,0,0,.1);
}

    .active::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: .2rem;
        background-color: rgba(255,255,255,.24);
    }

.link:hover {
    background-color: rgba(255,255,255,.1);
    box-shadow: inset 0 0 .2rem .1rem rgba(0,0,0,.1);
}

    .link:hover::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        height: .2rem;
        background-color: rgba(255,255,255,.24);
    }

/* Header End */

/* Hero Start */

.logo-row {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.hero {
    position: relative;
    background-color: #145041;
    display: flex;
    width: 100%;
    min-height: 38rem;
    justify-content: flex-end;
    align-items: flex-end;
    box-shadow: 0 0 .7rem .15rem rgba(0, 0, 0, 0.3);
}

.hero-bg {
    position: absolute;
    background-color: #145041;
    background: url(/images/Ireland.jpg);
    background-size: cover;
    background-repeat: no-repeat;
    filter: brightness(30%) grayscale(30%);
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
}

.hero-text {
    color: #FFFFFF;
    width: 60%;
    padding-right: 2rem;
    padding-bottom: 2rem;
    z-index: 10;
}

    .hero-text h2 {
        color: #FFFFFF;
    }

    .hero-text p {
        font-size: 1.2rem;
        font-weight: 500;
    }

/* Hero End */

/* Content Start */

.content {
    width: 100%;
    height: 100%;
    padding: 3rem 2rem;
    background-color: rgba(20,80,65,.1);
}

.no-tours {
    text-align: center;
    font-size: 1.6rem;
    padding: 0 0 4rem 0;
}

.content-card-container {
    max-width: 50%;
    flex: auto;
    display: flex;
    margin-bottom: 3rem;
}

.left {
    justify-content: flex-end;
    padding: 0 1rem;
}

.right {
    justify-content: flex-start;
    padding: 0 1rem;
}

.content-card {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    box-shadow: 0 0 .5rem .1rem rgba(0, 0, 0, 0.2);
    border-radius: .2rem;
    width: 90%;
    padding: 1.5rem;
}

.card-image {
    position: relative;
    width: 100%;
    height: 20rem;
}

    .card-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 0 .25rem .075rem rgba(0, 0, 0, 0.2);
    }

.card-head {
    position: relative;
    padding-top: 1rem;
    font-size: 1.7rem;
    font-weight: 600;
    color: #145041;
    font-family: 'Libre Baskerville', serif;
    font-weight: 600;
}

.card-dates {
    position: relative;
    font-size: 1.4rem;
    padding-top: .3rem;
}

    .card-dates i {
        margin-right: .4rem;
    }

.card-body {
    position: relative;
    padding-top: .5rem;
    font-size: 1.1rem;
    flex: auto;
}

.card-button {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
    padding: 0 1rem .5rem 0;
    align-items: flex-end;
}

.button {
    cursor: pointer;
    background-color: #417E6F;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 1.5rem;
    padding: .3rem 1.1rem .5rem 1.1rem;
    border: 0;
    border-radius: .2rem;
    box-shadow: 0 0 .5rem .1rem rgba(0, 0, 0, 0.2);
    transition: .3s ease-out;
}

    .button:hover {
        background-color: #145041;
        color: #FFFFFF;
    }

.modal-button {
    cursor: pointer !important;
    background-color: #619387 !important;
    color: #FFFFFF !important;
    outline: none;
    min-width: 8rem;
    box-shadow: 0 0 .5rem .1rem rgba(0, 0, 0, 0.2) !important;
    transition: .3s ease-out !important;
}

    .modal-button:hover {
        background-color: #145041 !important;
    }

.modal-cancel-button {
    cursor: pointer !important;
    background-color: #E87977 !important;
    color: #FFFFFF !important;
    outline: none;
    min-width: 8rem;
    box-shadow: 0 0 .5rem .1rem rgba(0, 0, 0, 0.2) !important;
    transition: .3s ease-out !important;
    margin-right: 2rem !important;
}

    .modal-cancel-button:hover {
        background-color: #C13C3C !important;
    }

.modal-archive {
    color: #246284;
    font-size: 1.5rem;
}

.modal-delete {
    color: #E14646;
    font-size: 1.5rem;
}

.modal-link {
    color: #135041;
}

.tours-row {
    padding-top: 1rem;
    padding-bottom: 2rem;
}

    .tours-row h1 {
        padding-bottom: 2rem;
    }

.past-tours-row {
    padding-top: 1rem;
    padding-bottom: 6rem;
}

.add-tour-row {
    margin-top: -2rem;
    padding-bottom: 4rem;
}

.tours-button {
    color: #145041;
    text-decoration: none;
    font-size: 1.5rem;
    padding: .3rem 1.1rem;
    border: .15rem solid #145041;
    transition: .3s ease-out;
}

    .tours-button:hover {
        background-color: #145041;
        color: #FFFFFF;
    }

.about {
    background-color: #417E6F;
    margin-top: -1rem;
    margin-left: -2rem;
    margin-right: -2rem;
    padding: 4rem 4rem 6rem 4rem;
}

    .about h1 {
        color: #FFFFFF;
    }

.about-head {
    text-align: center;
    margin-bottom: 5rem;
}

.about-col {
    display: flex;
    width: 50%;
    justify-content: center;
    align-items: center;
    font-size: 1.25rem;
    color: #FFFFFF;
}

    .about-col img {
        filter: brightness(80%);
        border: .05rem solid #417E6F;
        border-radius: .3rem;
        box-shadow: 0 0 .5rem .1rem rgba(0, 0, 0, 0.2);
        width: 90%;
    }

.contact {
    padding-top: 3rem;
}

.contact-info {
    font-size: 1.25rem;
}

    .contact-info a {
        color: #000000;
        text-decoration: none;
    }

        .contact-info a:hover {
            color: #145041;
        }

    .contact-info i {
        padding-right: .5rem;
    }

.contact p {
    margin-top: 0;
    padding-bottom: 1.5rem;
    font-size: 1.25rem;
}

.contact-card {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    box-shadow: 0 0 .5rem .1rem rgba(0, 0, 0, 0.2);
    border-radius: .2rem;
    width: 85%;
    padding: 2rem 6rem;
}

.contact-head {
    text-align: center;
}

.contact-button {
    margin-top: 2rem;
}

/* Email Start */

.ft-red {
    color: #FF0000 !important;
}

.ft-red-border {
    border-bottom: .125rem solid #FF0000 !important;
}

.ft-active {
    -webkit-transform: translateY(-14px) scale(0.8) !important;
    transform: translateY(-14px) scale(0.8) !important;
    -webkit-transform-origin: 0 0 !important;
    transform-origin: 0 0 !important;
}

.loading-email {
    background-color: rgba(0,0,0,.2);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sending-container {
    padding: 1rem 3rem;
    background-color: rgba(0,0,0,.4);
    border-radius: .25rem;
    width: 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.sending {
    color: #FFFFFF;
    font-size: 1.5rem;
}

.sent-container {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.sent-dimmer {
    background-color: rgba(0,0,0,.2);
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: default;
}

.sent-head {
    width: 40%;
    position: relative;
    color: rgba(255,255,255,.75);
    font-size: 1.25rem;
    border-radius: .25rem .25rem 0 0;
    padding: .1rem .75rem;
}

.sent-error {
    background-color: #FF0000;
}

.sent-success {
    background-color: #2A9D8E;
}

.sent {
    width: 40%;
    padding: 1rem 3rem;
    background-color: #FFFFFF;
    border-radius: 0 0 .25rem .25rem;
    color: #000000;
    font-size: 1.5rem;
    text-align: center;
}

.sent-close {
    cursor: pointer;
    position: absolute;
    top: .4rem;
    right: .75rem;
}

.ft-progress {
    width: 100%;
}

/* Email End */

/* Terms and Conditions Start */

.terms-head {
    text-align: center;
    padding-top: 2rem;
}

.terms-body {
    padding: 0 8rem 4rem 8rem;
}

/* Terms and Conditions End */

/* Edit Page Start */

.intro-edit-container {
    position: relative;
    border: .0625rem dashed #FFFFFF;
    border-radius: .2rem;
    padding: 3rem 2rem 2rem 2rem;
    min-height: 15rem;
    transition: .3s ease-out;
    margin-top: 1rem;
}

    .intro-edit-container:hover {
        background-color: rgba(255,255,255,.1);
    }

.intro-update {
    display: inline-block;
    border: .0625rem solid #FFFFFF;
    padding: .3rem .6rem;
    border-radius: .2rem;
    box-shadow: 0 0 .5rem .1rem rgba(255, 255, 255, 0.2);
}

.intro-add-button {
    position: absolute;
    top: .5rem;
    right: 1rem;
    font-size: 2rem;
    color: rgba(255,255,255,.6);
    transition: .3s ease-out;
}

    .intro-add-button:hover {
        color: #54B646;
    }

.intro-edit-button {
    position: absolute;
    top: .5rem;
    right: 1rem;
    font-size: 2rem;
    color: rgba(255,255,255,.6);
    transition: .3s ease-out;
}

    .intro-edit-button:hover {
        color: #FFC900;
    }

.intro-delete-button {
    position: absolute;
    top: .5rem;
    right: 5rem;
    font-size: 2rem;
    color: rgba(255,255,255,.6);
    transition: .3s ease-out;
}

    .intro-delete-button:hover {
        color: #E14646;
    }

.card-image-intro {
    position: relative;
    width: 100%;
    height: 10rem;
    text-align: center;
}

.card-image-intro img {
    height: 75%;
}

.intro-button-container {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.intro-button-icon {
    display: flex;
    justify-content: center;
    font-size: 4rem;
    width: 100%;
    text-align: center;
}

.intro-button-text {
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.intro-add-button {
    cursor: pointer;
    color: rgba(255,255,255,.8);
    text-decoration: none;
    transition: .3s ease-out;
    margin-right: .5rem;
}

    .intro-add-button:hover {
        color: #54B646;
    }

.tour-edit-container {
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    border: .0625rem dashed rgba(0,0,0,.6);
    border-radius: .2rem;
    padding: 4rem 2rem 2rem 2rem;
    transition: .3s ease-out;
}

    .tour-edit-container:hover {
        background-color: rgba(20,80,65,.04);
    }

.tour-update {
    display: inline-block;
    border: .0625rem solid #000000;
    padding: .3rem .6rem;
    border-radius: .2rem;
    box-shadow: 0 0 .5rem .1rem rgba(0, 0, 0, 0.1);
}

.tour-edit-button {
    position: absolute;
    top: .5rem;
    right: 1rem;
    font-size: 1.5rem;
    color: rgba(0,0,0,.6);
    transition: .3s ease-out;
}

    .tour-edit-button:hover {
        color: #FFC900;
    }

.tour-archive-button {
    position: absolute;
    top: .5rem;
    right: 4.5rem;
    font-size: 1.5rem;
    color: rgba(0,0,0,.6);
    transition: .3s ease-out;
}

    .tour-archive-button:hover {
        color: #246284;
    }

.tour-delete-button {
    position: absolute;
    top: .5rem;
    right: 8rem;
    font-size: 1.5rem;
    color: rgba(0,0,0,.6);
    transition: .3s ease-out;
}

    .tour-delete-button:hover {
        color: #E14646;
    }

.about-edit-container {
    position: relative;
    border: .0625rem dashed #FFFFFF;
    border-radius: .2rem;
    min-height: 20rem;
    min-width: 30rem;
    padding: 2rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: .3s ease-out;
}

    .about-edit-container:hover {
        background-color: rgba(255,255,255,.05);
    }

    .about-edit-container i {
        padding-right: .5rem;
    }

.about-add-button {
    font-size: 2rem;
    color: rgba(255,255,255,.6);
    transition: .3s ease-out;
    text-decoration: none;
}

    .about-add-button:hover {
        color: #54B646;
    }

.about-edit-button {
    position: absolute;
    top: .5rem;
    right: 1rem;
    font-size: 2rem;
    color: rgba(255,255,255,.6);
    transition: .3s ease-out;
}

    .about-edit-button:hover {
        color: #FFC900;
    }

.about-delete-button {
    position: absolute;
    top: .5rem;
    right: 5rem;
    font-size: 2rem;
    color: rgba(255,255,255,.6);
    transition: .3s ease-out;
}

    .about-delete-button:hover {
        color: #E14646;
    }

.about-update {
    display: inline-block;
    border: .0625rem solid #FFFFFF;
    padding: .3rem .6rem;
    border-radius: .2rem;
    box-shadow: 0 0 .5rem .1rem rgba(255, 255, 255, 0.2);
}

.darken {
    position: fixed;
    top: 4rem;
    left: 0;
    right: 5rem;
    height: 100%;
    background-color: rgba(0,0,0,.3);
    z-index: 120;
}

.close-div {
    position: fixed;
    top: 4rem;
    right: 0;
    width: 5rem;
    height: 100%;
    z-index: 200;
    background-color: rgba(0,0,0,.3);
}

    .close-div a {
        font-size: 3rem;
        color: rgba(255,255,255,.5);
        transition: .3s ease-out;
    }

        .close-div a:hover {
            color: #E14646;
        }

.edit-container {
    position: absolute;
    top: 5rem;
    left: 5rem;
    right: 0;
    width: calc(100% - 5rem);
    height: 100%;
    z-index: 120;
}

    .edit-container .card-image {
        border: .0625rem dashed rgba(0,0,0,.2);
        height: 15rem;
    }

        .edit-container .card-image:hover {
            border: .0625rem dashed rgba(20,80,65,.9);
        }

.tour-image-display {
    height: 12rem;
    width: 100%;
    padding: .5rem 6rem 0 6rem;
}

    .tour-image-display img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        box-shadow: 0 0 .25rem .075rem rgba(0, 0, 0, 0.2);
    }

.tour-image-controls {
    position: relative;
    height: 3rem;
    width: 100%;
}

.edit-container .card-head textarea {
    font-size: 1.4rem;
    font-weight: 600;
    color: #145041;
    font-family: 'Libre Baskerville', serif;
    border: .0625rem dashed rgba(0,0,0,.2);
    height: 4.2rem;
    padding: .2rem;
}

    .edit-container .card-head:hover textarea,
    .edit-container .card-head textarea:focus {
        border: .0625rem dashed rgba(20,80,65,.9);
    }

.edit-container .card-body {
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.edit-container .card-button {
    justify-content: center;
    padding-right: 0;
}

.image-edit-button {
    cursor: pointer;
    position: absolute;
    bottom: .5rem;
    right: 2rem;
    font-size: 1.5rem;
    color: rgba(0,0,0,.6);
    transition: .3s ease-out;
}

    .image-edit-button:hover {
        color: #54B646;
    }

.image-delete-button {
    position: absolute;
    bottom: .5rem;
    right: 4.5rem;
    font-size: 1.5rem;
    color: rgba(0,0,0,.6);
    transition: .3s ease-out;
}

    .image-delete-button:hover {
        color: #E14646;
    }

.edit-dates {
    display: flex;
    align-items: center;
    align-content: center;
}

.date-picker {
    position: relative;
    border: .0625rem dashed rgba(0,0,0,.2);
    display: flex;
    align-items: center;
    align-content: center;
    padding: .2rem .7rem;
}

    .date-picker:hover,
    .date-picker:focus-within {
        border: .0625rem dashed rgba(20,80,65,.9);
    }

    .date-picker [type=text] {
        width: 6rem;
        font-size: 1.2rem;
        border: none;
        margin: 0 .5rem;
    }

    .date-picker img {
        cursor: pointer;
    }

.tour-footer-left {
    position: relative;
    display: flex;
    flex: 0;
    height: 100%;
    justify-content: flex-start;
    align-items: center;
}

.tour-footer-middle {
    position: relative;
    display: flex;
    flex: 1;
    height: 100%;
    justify-content: center;
    align-items: center;
}

.tour-footer-right {
    display: flex;
    flex: 0;
    height: 100%;
    justify-content: flex-end;
    align-items: center;
}

.button-container {
    display: flex;
    flex-direction: column;
}

.button-icon {
    display: flex;
    justify-content: center;
    font-size: 2rem;
    width: 100%;
    text-align: center;
}

.button-text {
    font-size: .75rem;
    width: 100%;
    text-align: center;
}

.image-button-container {
    display: flex;
    height: 100%;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.image-button-icon {
    display: flex;
    justify-content: center;
    font-size: 4rem;
    width: 100%;
    text-align: center;
}

.image-button-text {
    font-size: 1rem;
    width: 100%;
    text-align: center;
}

.image-add-button {
    cursor: pointer;
    color: rgba(0,0,0,.6);
    text-decoration: none;
    transition: .3s ease-out;
    margin-right: .5rem;
}

    .image-add-button:hover {
        color: #54B646;
    }

.itinerary-label {
    margin-right: .5rem;
}

.itinerary-view-button {
    color: rgba(0,0,0,.6);
    text-decoration: none;
    transition: .3s ease-out;
    margin-right: 1.3rem;
}

    .itinerary-view-button:hover {
        color: #145041;
    }

.itinerary-upload-button {
    cursor: pointer;
    color: rgba(0,0,0,.6);
    text-decoration: none;
    transition: .3s ease-out;
    margin-right: 1rem;
}

    .itinerary-upload-button:hover {
        color: #54B646;
    }

.itinerary-remove-button {
    color: rgba(0,0,0,.6);
    text-decoration: none;
    transition: .3s ease-out;
}

    .itinerary-remove-button:hover {
        color: #E14646;
    }

.tour-cancel-button {
    color: rgba(0,0,0,.6);
    text-decoration: none;
    transition: .3s ease-out;
}

    .tour-cancel-button:hover {
        color: #E14646;
    }

.tour-save-button {
    color: rgba(0,0,0,.6);
    text-decoration: none;
    transition: .3s ease-out;
    margin-left: 1rem;
}

    .tour-save-button:hover {
        color: #54B646;
    }

.upload-error {
    background-color: #E14646;
    color: rgba(255,255,255,.9);
    padding: .5rem 1rem .7rem 1rem;
    border-radius: .15rem;
    font-weight: 600;
    font-size: 1.1rem;
}

    .upload-error i {
        font-size: 1.2rem;
        padding-right: 1rem;
    }

.upload-success {
    position: fixed;
    top: 5rem;
    left: 1rem;
    background-color: #54B646;
    color: rgba(255,255,255,.9);
    padding: .5rem 1rem .7rem 1rem;
    border-radius: .15rem;
    font-weight: 600;
    font-size: 1.1rem;
    z-index: 200;
    box-shadow: 0 0 .5rem .1rem rgba(0, 0, 0, 0.3);
}

    .upload-success i {
        font-size: 1.2rem;
        padding-right: 1rem;
    }

.error-container {
    z-index: 199;
}

.error-container-tourTitleDiv {
    position: absolute;
    top: -2rem;
    left: -13.2rem;
    min-width: 12rem;
}

.error-container-dateDepartDiv,
.error-container-dateReturnDiv {
    position: absolute;
    bottom: -.5rem;
    right: .5rem;
    width: 8rem;
}

.error-container-editTourBodyDiv {
    position: absolute;
    top: 9rem;
    left: -13.2rem;
    min-width: 12rem;
}

.error-container-img {
    position: absolute;
    top: 1rem;
    right: -8rem;
    min-width: 12rem;
}

.error-container-it {
    position: absolute;
    top: -1.8rem;
    left: -13.2rem;
    min-width: 12rem;
}

.error-detail {
    position: absolute;
    display: flex;
    flex-direction: column;
    justify-items: center;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
    font-size: .8rem;
    font-weight: 600;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    color: #FFFFFF;
    min-height: 5rem;
    background-color: #E14646;
    padding: .8rem .65rem .8rem .65rem;
    z-index: 200;
    border-radius: .2rem;
    box-shadow: 0 0 .5rem .1rem rgba(0, 0, 0, 0.2);
}

    .error-detail p {
        margin: 0;
    }

.error-container-img .error-detail::before {
    position: absolute;
    top: 2rem;
    left: -.5rem;
    content: " ";
    width: 0;
    height: 0;
    border-top: .5rem solid transparent;
    border-bottom: .5rem solid transparent;
    border-right: .5rem solid #E14646;
}

.error-container-it .error-detail::before {
    position: absolute;
    top: 3rem;
    right: -.5rem;
    content: " ";
    width: 0;
    height: 0;
    border-top: .5rem solid transparent;
    border-bottom: .5rem solid transparent;
    border-left: .5rem solid #E14646;
}

.error-container-tourTitleDiv .error-detail::before{
    position: absolute;
    top: 3.5rem;
    right: -.5rem;
    content: " ";
    width: 0;
    height: 0;
    border-top: .5rem solid transparent;
    border-bottom: .5rem solid transparent;
    border-left: .5rem solid #E14646;
}

.error-container-editTourBodyDiv .error-detail::before {
    position: absolute;
    top: 2rem;
    right: -.5rem;
    content: " ";
    width: 0;
    height: 0;
    border-top: .5rem solid transparent;
    border-bottom: .5rem solid transparent;
    border-left: .5rem solid #E14646;
}

.error-container-dateDepartDiv .error-detail::before,
.error-container-dateReturnDiv .error-detail::before {
    position: absolute;
    top: -.5rem;
    left: 6rem;
    content: " ";
    width: 0;
    height: 0;
    border-left: .5rem solid transparent;
    border-right: .5rem solid transparent;
    border-bottom: .5rem solid #E14646;
}

.error {
    display: flex;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 201;
}

.notification-close-icon {
    position: absolute;
    top: .2rem;
    right: .5rem;
    font-size: .9rem;
    color: rgba(255,255,255,.7);
    transition: .2s ease-out;
}

    .notification-close-icon:hover {
        color: rgba(255,255,255,1);
    }


/* Edit Page End */

/* Content End */

/* Login Start */

.login-content {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.login-card {
    width: 40rem;
    padding: 3rem
}

    .login-card h2 {
        margin-bottom: 2rem;
    }

.ft-login-error {
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.1rem;
    text-align: center;
}

/* Login End */

/* Footer Start */

footer {
    width: 100%;
    height: 100%;
    background-color: #145041;
    color: #FFFFFF;
    padding: 1.5rem;
}

.footer-container {
    width: 100%;
    height: 100%;
}

.footer-left {
    display: flex;
    width: 30%;
    align-items: center;
    padding-left: 3rem;
}

.footer-middle {
    display: flex;
    flex-direction: column;
    width: 40%;
    align-items: center;
}

    .footer-middle p {
        width: 100%;
        text-align: center;
        margin: .25rem 0;
    }

    .footer-middle a,
    .footer-right a {
        color: #FFFFFF;
        font-weight: 600;
        text-decoration: none;
    }

        .footer-middle a:hover,
        .footer-right a:hover {
            text-decoration: underline;
        }

    .footer-middle i {
        padding-right: .5rem;
    }

.footer-right {
    display: flex;
    width: 30%;
    align-items: center;
    justify-content: flex-end;
    padding-right: 3rem;
}

/* Footer End */

/* Animation Start */

@-webkit-keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
    }
}

.fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }

    to {
        opacity: 1;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

@keyframes fadeOutUp {
    from {
        opacity: 1;
    }

    to {
        opacity: 0;
        -webkit-transform: translate3d(0, -100%, 0);
        transform: translate3d(0, -100%, 0);
    }
}

.fadeOutUp {
    -webkit-animation-name: fadeOutUp;
    animation-name: fadeOutUp;
}

@-webkit-keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideInLeft {
    from {
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
        visibility: visible;
    }

    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}

.slideInLeft {
    -webkit-animation-name: slideInLeft;
    animation-name: slideInLeft;
}

@-webkit-keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

@keyframes slideOutLeft {
    from {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }

    to {
        visibility: hidden;
        -webkit-transform: translate3d(-100%, 0, 0);
        transform: translate3d(-100%, 0, 0);
    }
}

.slideOutLeft {
    -webkit-animation-name: slideOutLeft;
    animation-name: slideOutLeft;
}

.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

/* Animation End */

/* Responsive Start */

@media only screen and (max-width: 90rem) {
    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

    .tour-edit-container{
        padding-top: 3.2rem;
    }

    .intro-delete-button,
    .about-delete-button {
        font-size: 1.7rem;
        right: 4rem;
    }

    .intro-edit-button,
    .about-edit-button {
        font-size: 1.7rem;
    }

    .tour-edit-button,
    .tour-archive-button,
    .tour-delete-button {
        font-size: 1.4rem;
    }

    .tour-archive-button {
        right: 4rem;
    }

    .tour-delete-button {
        right: 7rem;
    }

    .edit-card-container {
        max-width: 65%;
    }

    .content-card {
        width: 95%;
    }

    .card-image-intro {
        height: 8rem;
    }

    .card-head {
        font-size: 1.5rem;
    }

    .card-button {
        font-size: 1.3rem;
    }

    .about-col {
        font-size: 1.1rem;
    }

        .about-col img {
            width: 98%;
        }

    .footer-container {
        font-size: .9rem;
    }

    .login-card {
        width: 35rem;
    }

    .edit-container .card-head textarea {
        font-size: 1.2rem;
        height: 3.5rem;
    }
}

@media only screen and (max-width: 80rem) {
    .hero-text {
        margin-bottom: 2rem;
        margin-right: 2rem;
    }

    .tour-row {
        flex-direction: column !important;
        justify-content: center;
        align-content: center;
    }

    .about-row {
        flex-direction: column !important;
        justify-content: center;
        align-content: center;
    }

    .about-col {
        width: 80%;
        padding-bottom: 1rem;
    }

    .left,
    .right {
        justify-content: center;
        padding: 1rem 0;
    }

    .content-card-container {
        max-width: 80%;
    }
}

@media only screen and (max-width: 62rem) {
    .links {
        position: fixed;
        flex-direction: column;
        top: 0;
        left: -100rem;
        height: 100vh;
        width: 19rem;
        background-color: #FFFFFF;
        padding: 0;
        box-shadow: .1rem 0 .2rem -.0625rem rgba(0,0,0,.14);
        z-index: 999;
    }

    .menu-out {
        left: 0;
    }

    .links ul {
        flex-direction: column;
        height: 40rem;
        flex: auto;
        height: auto;
        margin: 0;
    }

    .head-left {
        justify-content: flex-end;
    }

    .mobile-nav {
        display:block;
        height: 100%; 
    }

        .mobile-nav a {
            color: #FFFFFF;
            text-decoration: none;
        }

    .nav-icon {
        display: flex;
        height: 100%;
        align-items: center;
        padding: 0 1rem;
        transition: .2s ease-out;
    }

    .nav-icon:hover {
        background-color: rgba(0,0,0,.1);
    }

    .nav-icon i {
        font-size: 2rem;
    }

    .nav-header-container {
        display: block;
        padding: 2rem;
        width: 100%;
    }

    .nav-header-container img {
        width: 15rem;
    }

    .link {
        color: #000000;
        font-size: 1.4rem;
        padding-top: .5rem;
        padding-bottom: .5rem;
    }

    .link:hover {
        background-color: rgba(20,80,65,.2);
        box-shadow: none;
    }

    .link:hover::after {
        display: none;
    }

    .link i {
        font-size: 1.4rem;
        margin-right: 1.5rem;
    }

    .active {
        background-color: rgba(20,80,65,.2);
        box-shadow: none;
    }

    .active::after {
        display: none;
    }

    .nav-contact {
        display: block;
        background-color: #145041;
        color: #FFFFFF;
        padding: .7rem 1.5rem;
    }

    .nav-contact-info {
        font-size: .95rem;
    }

        .nav-contact-info a {
            color: #FFFFFF;
            text-decoration: none;
        }

        .nav-contact-info i {
            padding-right: .5rem;
        }

    .hero-text {
        width: 100%;
        padding: 2.5rem;
        margin: 0;
    }

    .content-card-container {
        max-width: 100%;
        padding: 0;
    }

    .close-div {
        z-index: 120;
    }

    .close-div i {
        display: none;
    }
}

/* Responsive End */
