﻿html {
    font-size: 14px;
    position: relative;
    min-height: 100%;
}

@media (min-width: 768px) {
    html {
        font-size: 16px;
    }
}

.box-shadow {
    box-shadow: 0 .25rem .75rem rgba(0, 0, 0, .05);
}

.mail-sended {
    border: solid 3px lime;
    padding: 0;
}

body {
    /* Margin bottom by footer height */
    margin-bottom: 60px;
    background-color: #1B2631;
    color: lime;
}

a {
    color: yellow;
}

    a:visited {
        color: yellow;
    }

    a:hover {
        color: yellow;
    }

.phone {
    align-self: center;
}

.red-text {
    color: red !important;
}

.yellow-text {
    color: yellow !important;
}

td, th {
    text-align: center;
}

.newsticker, .newsCol {
    text-align: center;
    margin: auto;
}

.newsRow {
    justify-content: center;
    margin-bottom: 10px;
}

.newsticker {
    background-color: black;
    border-style: ridge;
    border-right: none;
}

.newsticker-col {
    padding-right: 0;
}

.abo-col {
    margin: auto;
    padding-top: 10px;
    background-color: black;
    border-style: ridge;
    border-left: none;
    height: 66px;
}

.abo-button {
    background-color: #1B2631 !important;
    border-color: #1B2631 !important;
}

.newsEntry {
    list-style-type: none;
}

.margin-left {
    margin-left: 25px;
}

@-webkit-keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    2% {
        -webkit-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    4% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    6% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    8% {
        -webkit-transform: rotate(-22deg);
        transform: rotate(-22deg)
    }

    10% {
        -webkit-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    12% {
        -webkit-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    14% {
        -webkit-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    16% {
        -webkit-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    18% {
        -webkit-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    20% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

@keyframes ring {
    0% {
        -webkit-transform: rotate(-15deg);
        -ms-transform: rotate(-15deg);
        transform: rotate(-15deg)
    }

    2% {
        -webkit-transform: rotate(15deg);
        -ms-transform: rotate(15deg);
        transform: rotate(15deg)
    }

    4% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    6% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    8% {
        -webkit-transform: rotate(-22deg);
        -ms-transform: rotate(-22deg);
        transform: rotate(-22deg)
    }

    10% {
        -webkit-transform: rotate(22deg);
        -ms-transform: rotate(22deg);
        transform: rotate(22deg)
    }

    12% {
        -webkit-transform: rotate(-18deg);
        -ms-transform: rotate(-18deg);
        transform: rotate(-18deg)
    }

    14% {
        -webkit-transform: rotate(18deg);
        -ms-transform: rotate(18deg);
        transform: rotate(18deg)
    }

    16% {
        -webkit-transform: rotate(-12deg);
        -ms-transform: rotate(-12deg);
        transform: rotate(-12deg)
    }

    18% {
        -webkit-transform: rotate(12deg);
        -ms-transform: rotate(12deg);
        transform: rotate(12deg)
    }

    20% {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg)
    }
}

.faa-ring.animated,
.faa-ring.animated-hover:hover,
.faa-parent.animated-hover:hover > .faa-ring {
    -webkit-animation: ring 2s ease infinite;
    animation: ring 2s ease infinite;
    transform-origin-x: 50%;
    transform-origin-y: 0px;
    transform-origin-z: initial
}

.hidden-link {
    cursor: auto;
    color: lime !important;
    text-decoration: none;
}

    .hidden-link:link {
        cursor: auto;
        color: lime !important;
        text-decoration: none;
    }

    .hidden-link:hover {
        cursor: auto;
        color: lime !important;
        text-decoration: none;
    }

    .hidden-link:visited {
        cursor: auto;
        color: lime !important;
        text-decoration: none;
    }

    .hidden-link:active {
        cursor: auto;
        color: lime !important;
        text-decoration: none;
    }


/*accordion*/
.card-body, .card-header {
    background-color: #1B2631 !important;
}


.card {
    border: none !important;
}

.btn-link,
.btn-link:hover,
.btn-link:link,
.btn-link:visited,
.btn-link:active {
    font-size: x-large !important;
    color: yellow !important;
    text-align: left !important;
    text-decoration: none !important;
}

[aria-expanded="true"] .fa-chevron-circle-up,
[aria-expanded="false"] .fa-chevron-circle-down {
    display: none;
}

/*rainbow button*/
.glow-on-hover {
    width: 100%;
    height: 50px;
    border: none;
    outline: none;
    /*color: #fff;*/
    background-color: #1B2631;
    cursor: pointer;
    position: relative;
    z-index: 0;
    border-radius: 10px;
}

    .glow-on-hover:before {
        content: '';
        background: linear-gradient(45deg, #ff0000, #ff7300, #fffb00, #48ff00, #00ffd5, #002bff, #7a00ff, #ff00c8, #ff0000);
        position: absolute;
        top: -2px;
        left: -2px;
        background-size: 400%;
        z-index: -1;
        filter: blur(5px);
        width: calc(100% + 4px);
        height: calc(100% + 4px);
        animation: glowing 20s linear infinite;
        opacity: 0;
        transition: opacity .3s ease-in-out;
        border-radius: 10px;
    }

    .glow-on-hover:active {
        /*color: #000*/
    }

        .glow-on-hover:active:after {
            background: transparent;
        }

    .glow-on-hover:hover:before {
        opacity: 1;
    }

    .glow-on-hover:after {
        z-index: -1;
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        background-color: #1B2631;
        left: 0;
        top: 0;
        border-radius: 10px;
    }

@keyframes glowing {
    0% {
        background-position: 0 0;
    }

    50% {
        background-position: 400% 0;
    }

    100% {
        background-position: 0 0;
    }
}

#timepicker {
    width: 100px !important;
}

.float {
    position: fixed;
    width: 30px;
    height: 30px;
    bottom: 40px;
    right: 10px;
    background-color: lime;
    color: #1B2631;
    border-radius: 50px;
    text-align: center;
}

.float-phone {
    position: fixed;
    width: 30px;
    height: 30px;
    bottom: 120px;
    right: 10px;
    background-color: lime;
    color: #1B2631;
    border-radius: 50px;
    text-align: center;
}

.float-phone-only {
    position: fixed;
    width: 30px;
    height: 30px;
    bottom: 120px;
    right: 10px;
    background-color: lime;
    color: #1B2631;
    border-radius: 50px;
    text-align: center;
}

.float-share {
    position: fixed;
    width: 30px;
    height: 30px;
    bottom: 80px;
    right: 10px;
    background-color: lime;
    color: #1B2631;
    border-radius: 50px;
    text-align: center;
}

.my-float {
    margin-top: 8px;
}

.dogImage {
    max-height: 350px;
    max-width: 350px;
    width: auto;
    height: auto;
    margin: auto;
    display: block;
}

.hide {
    display: none;
}

.dropdown-submenu {
    position: relative;
}

    .dropdown-submenu a::after {
        transform: rotate(-90deg);
        position: absolute;
        right: 6px;
        top: .8em;
    }

    .dropdown-submenu .dropdown-menu {
        top: 0;
        left: 100%;
        margin-left: .1rem;
        margin-right: .1rem;
    }

.dropdown-toogle-green {
    color: lime !important;
}

    .dropdown-toogle-green:hover,
    .dropdown-toogle-green:link,
    .dropdown-toogle-green:visited,
    .dropdown-toogle-green:active {
        background-color: black;
    }

.textcol {
    border-radius: 15px;
    border: 1px solid lightgray;
    display: flex;
    justify-content: center;
    flex-direction: column;
    padding-top: 5px;
    padding-left: 10px;
    padding-right: 10px;
    text-align: left;
}

    .textcol.centertextcol {
        align-items: center;
    }

.centertextcol {
    justify-content: center;
    display: flex;
}

.textcol-content-height {
    height: 100%;
}

.right-col {
    margin-left: 20px;
}

.youngDogTile {
    max-height: 350px;
}

.adultDogTile {
    margin-top: 200px;
}


/* Input field */
.select2-selection__rendered {
    color: black;
}

/* Around the search field */
.select2-search {
    color: black;
}

/* Search field */
.select2-search input {
        color: black;
}

/* Each result */
.select2-results {
    color: black;
}

/* Higlighted (hover) result */
.select2-results__option--highlighted {
    color: black;
}

/* Selected option */
.select2-results__option[aria-selected=true] {
    color: black;
}

 /*Loading animation backdrop*/
.text-center {
    width: 100%;
    position: relative;
    height: 100%;
}

.spinner-grow {
    display: block;
    position: fixed;
    top: calc(50% - (58px / 2));
    right: calc(50% - (58px / 2));
    color: lime !important;
    width: 5rem;
    height: 5rem;
    font-weight: bolder;
}

#backdrop {
    position: absolute;
    top: 0;
    width: 99vw;
    height: 100%;
    z-index: 6000000;
    background-color: rgba(0,0,0,0.7);
}

.ui-timepicker-container {
    z-index: 9999999 !important;
}

.split-background-color {
    background: linear-gradient( to right, green 0%, green 33%, grey 34%, grey 65%, red 66%, red 100% );
    text-align: center;
    border: 3px solid grey;
    height: 24px;
    line-height: 1.1;
}

.event-grey-green {
    background: linear-gradient( to right, green 0%, green 50%, grey 50%, grey 100% );
    text-align: center;
    border: 3px solid grey !important;
    height: 24px;
    line-height: 1.1;
}

.event-green {
    background-color: green !important;
    text-align: center;
    border: 1px solid darkgreen !important;
    height: 24px;
}

.event-grey-red {
    background: linear-gradient( to right, red 0%, red 50%, grey 50%, grey 100% );
    text-align: center;
    border: 3px solid grey !important;
    height: 24px;
    line-height: 1.1;
}

.event-red {
    background-color: red !important;
    text-align: center;
    border: 1px solid darkred !important;
    height: 24px;
}