﻿.orange {
    color: #F48024;
}

.green {
    color: #45A163;
}

.blue {
    color: #009eea;
}

.very-light-gray {
    color: #dedede;
}

.noselect {
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}

/*

    Spinner for ajax requests
    -------------------------

*/
.tb-spinner.small div {
    height: 8px;
    width: 8px;
}

.tb-spinner > div {
    width: 13px;
    height: 13px;
    background-color: #676767;
    border-radius: 50%;
    display: inline-block;
    -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
    animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.tb-spinner .bounce1 {
    -webkit-animation-delay: -0.32s;
    animation-delay: -0.32s;
}

.tb-spinner .bounce2 {
    -webkit-animation-delay: -0.16s;
    animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
    }
}

@keyframes sk-bouncedelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
        transform: scale(0);
    }

    40% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}
/*
    ------------------------------------------------------------------------------------
*/












/*

    Modal
    -------------------------

*/
.tb-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    /* padding-top: 100px;  */ /* Location of the box */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0, 0, 0); /* Fallback color */
    background-color: rgba(0, 0, 0, 0.9); /* Black w/ opacity */
}

/* Modal Content (Image) */
.tb-modal-content {
    position: relative;
    margin: auto;
    display: block;
    top: 50%;
}

/* Caption of Modal Image (Image Text) - Same Width as the Image */
#tb-modal-caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation - Zoom in the Modal */
.tb-modal-content, #tb-modal-caption {
    animation-name: zoom;
    animation-duration: 0.6s;
}

@keyframes zoom {
    from {
        transform: scale(0);
    }

    to {
        transform: scale(1);
    }
}

.tb-modal-close, .tb-prev, .tb-next {
    font-family: eicons;
}

    .tb-modal-close:before {
        content: '\e909';
    }

    .tb-prev:before {
        content: '\e908';
    }

    .tb-next:before {
        content: '\e907';
    }

.tb-modal-close {
    position: absolute;
    top: 45px;
    right: 35px;
    color: #f1f1f1;
    font-size: 20px;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: 0.3s;
}


.tb-prev, .tb-next {
    position: absolute;
    color: #f1f1f1;
    font-size: 50px;
    font-weight: 400;
    transition: 0.3s;
    height: 50px;
    line-height: 60px;
    top: 50%;
    margin-top: -40px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.tb-prev {
    margin-left: -50px;
}

.tb-next {
    right: 0px;
    margin-right: -50px;
}

    .tb-prev.disable,
    .tb-next.disable {
        -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
        filter: alpha(opacity=40);
        -moz-opacity: 0.4;
        -khtml-opacity: 0.4;
        opacity: 0.4;
    }

.tb-modal-close:hover,
.tb-modal-close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px) {
    .tb-modal-content {
        width: 100%;
    }
}
