﻿
/* width */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */

::-webkit-scrollbar-track {
    background: #1a1d23f1;
}

/* Handle */

::-webkit-scrollbar-thumb {
    background: #1c75bc;
    border-radius: 4px;
}

    /* Handle on hover */

    ::-webkit-scrollbar-thumb:hover {
        background: #2e5e85;
    }

* {
    padding: 0px;
    margin: 0px;
    box-sizing: border-box;
}

#main {
    margin: auto;
    max-height: 100vh;
    overflow:scroll;
    min-height: 100vh;
}

html, body {


    background: url("../images/bg.jpg") no-repeat center center;
    background-size: cover;
    background-repeat: no-repeat;
    font-family: "Open Sans", sans-serif;
}

.clear-both {
    clear: both;
}

@-webkit-keyframes at-ripple-blue {
    0% {
        box-shadow: 0 4px 10px rgba(65, 185, 255, 0.1), 0 0 0 0 rgba(65, 179, 255, 0.1), 0 0 0 5px rgba(65, 147, 255, 0.1), 0 0 0 10px rgba(65, 195, 255, 0.1);
    }

    100% {
        box-shadow: 0 4px 10px rgba(65, 179, 255, 0.582), 0 0 0 5px rgba(65, 170, 255, 0.274), 0 0 0 10px rgba(65, 185, 255, 0.205), 0 0 0 20px rgba(65, 201, 255, 0.479);
    }
}

@keyframes at-ripple-blue {
    0% {
        box-shadow: 0 4px 10px rgba(111, 155, 180, 0.774), 0 0 0 0 rgba(72, 126, 161, 0.644), 0 0 0 5px rgba(42, 94, 161, 0.788), 0 0 0 10px rgba(47, 120, 153, 0.719);
    }

    100% {
        box-shadow: 0 4px 10px rgba(91, 162, 209, 0.192), 0 0 0 5px rgba(80, 157, 219, 0.274), 0 0 0 10px hsla(202, 75%, 71%, 0.205), 0 0 0 20px rgba(107, 203, 241, 0.192);
    }
}

#cskh-icon {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 90px;
    height: 90px;
    border-radius: 50%;
    animation: at-ripple-blue 0.6s linear infinite;
}

    #cskh-icon img {
        width: 100%;
    }

@media screen and (max-width: 768px) {
    #cskh-icon {
        width: 40px;
        height: 40px;
        position: absolute;
        right: 20px;
        bottom: 80px;
    }
}

.primary-quick .btn {
    align-items: center;
    border: 2px solid #fff;
    border-radius: 5px;
    color: #fff;
    cursor: pointer;
    font-size: 12px;
    font-weight: 700;
    height: 30px;
    justify-content: center;
    padding: 5px 10px;
    text-align: center;
    text-decoration: none;
    user-select: none;
}

.btn.is-red {
    background: #33c85d;
    border-color: #33c85d;
}



.card-deck {
    padding: 10px;
}

@media screen and (max-width: 768px) {
    .card-deck {
        padding: 0px;
    }

    .card-body {
        padding: 5px;
    }

    .card-title, card-text {
        font-size: 14px;
        margin-bottom: 3px;
    }

    .card-title {
        text-align: justify;
    }

    .card-text {
        text-align: right;
    }

    .c-card-image {
        padding-right: 5px;
    }

    .c-card-text {
        padding-left: 5px;
    }

    .stretch {
        width: 100%;
        height: 100%;
    }
}
