﻿#header {
    background-color: #fff;
    border-bottom: 5px solid #0073b7;
}

.ptop-150 {
    padding-top: 120px;
}

.site-logo {
    padding: 10px;
}

.submit-button {
    background-color: #0073b7;
}

    .submit-button:hover {
        background-color: #1895DF;
    }

.book-button {
    background-color: #0073b7;
}

    .book-button:hover {
        background-color: #1895DF;
    }

.add-button {
    padding: 10px 25px;
    color: #0073b7;
    font-size: 1em;
    outline: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    background: transparent;
    border-radius: 3px;
    border: 2px solid #0073b7 !important;
    z-index: 1;
}

    .add-button:after {
        position: absolute;
        content: "";
        width: 0;
        height: 100%;
        top: 0;
        right: 0;
        z-index: -1;
        background: #0073b7 !important;
        transition: all 0.3s ease;
        background-color: transparent;
    }

    .add-button:hover {
        color: #fff;
        border: 2px solid #0073b7 !important;
        background-color: transparent;
    }

        .add-button:hover:after {
            left: 0;
            width: 100%;
        }

    .add-button:active {
        top: 2px;
    }

.thick-line {
    background-color: #0073b7;
}
