/*@import url('https://fonts.googleapis.com/css2?family=Anton&display=swap');*/

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    border: 0;
    /*font-size: 100%;*/
    /*font: inherit;*/
    margin: 0;
    /*padding: 0;*/
}
*:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075), 0 0 8px rgba(102,175,233,.6);
}
html{
    scroll-behavior: smooth;
}
body {
    padding: 0;
    background: #F4F4F4;
    font-family: "Lucida Sans Unicode", "Lucida Grande", sans-serif;
    margin:0px;
    overflow-wrap: break-word;
}
ol, ul {
    /*    list-style: none;
        padding: 0px;*/
    margin-bottom: 10px;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}
table{
    width:100%;

}
img{
    vertical-align:middle;
    max-width: 100%;
    max-height: 100%;
    height: auto;
    margin: auto;

}
textarea{
    width:100%;
}

h1{
    font-size: 1.7em;
}
h2 {
    font-size: 1.1em;
    margin-bottom: 0.5em;
    margin-top: 0;
}
h3 {
    font-size: .9em;
    margin-bottom: 5px;
    margin-top: 0;
}
p {
    word-wrap: break-word;
    font-size:110%;
    margin-bottom:0.5em;
    margin-top: 0.5em;
}
a {
    text-decoration: none;
}

a img {
    border: none;
}

.footer {
    margin: 0 auto;
    padding: 20px;
    background-color: #11999e;
}

.footer p {
    margin: 0;
    text-align: center;
    font-size: smaller;
}
.footer, .footer a{
    color: #fff;    
}
.footer-menu{
    margin-top:5px;   
}

.languages{
    list-style-type:none;
    margin:0;
    text-align: center;
    margin-bottom: 20px;
    padding: 0;
}
.languages li{
    display:inline;
    margin: 10px;
}
.languages a{
    display: inline-block;
    height: 48px;
    line-height: 48px;
    vertical-align: middle;
}
.clear{
    clear:both;
}
.content {
    position: relative;
    max-width: 1117px;
    margin: auto;
    background-color: #fff;
    border-radius: 5px;
}

@media all and (max-width:320px){
    table td {
        font-size: 80%;
    }
}
.small{
    font-size:10px;
}

.ads{
    text-align:center;
    clear:both;
    margin-top: 10px;
    margin-bottom: 10px;
    min-height: 290px;
}


/* NAV */

nav.navigation{
    position:relative;
    height:45px;
    background-color:#3c3c3c;
    z-index:2;
}
.nav-logo{
    padding:4px 10px;
    color:#ffffff;
    font-weight:700;
    margin-bottom: 0px;
    overflow: hidden;
}
.nav-logo a{
    color:#ffffff;
}
.nav-logo img{
    vertical-align: text-bottom;
}
.nav-title{
    font-size: 1.5em;
}

ul.nav-menu, ul.nav-menu li, ul.nav-menu li a{
    float:left;
}
ul.nav-menu{
    padding-left:10px;
    list-style: none;
}
ul.nav-menu li a{
    height:40px;
    line-height:40px;
    padding:0 10px;
    color:#ffffff;
    text-decoration:none;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
ul.nav-menu li a:hover{
    color:#6decb9;
}
.nav-toggle{
    display:none;

    position:absolute;
    top:0px;
    right:0;
    width:50px;
    height:45px;
    background-color:#11999e;
    cursor:pointer;
}
span.icon-bar{
    position:absolute;
    right:12px;
    display:block;
    width:26px;
    height:2px;
    background-color:#ffffff;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.icon-bar:nth-child(1){
    top:15px;
}
.icon-bar:nth-child(2){
    top:22px;
}
.icon-bar:nth-child(3){
    top:29px;
}
.nav-overlay{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:0;
    background-color:rgba(0,0,0,0.5);
    z-index:1;
    opacity:0;
    visibility:hidden;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
.nav-overlay.active{
    opacity:1;
    visibility:visible;
}
.nav-menu{
    margin:0px;
}
/* ICON BARS ANIMATION */

.nav-toggle.active .icon-bar:nth-child(1){
    top:24px;
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    transform: rotate(45deg);
}
.nav-toggle.active .icon-bar:nth-child(2){
    width:0;
}
.nav-toggle.active .icon-bar:nth-child(3){
    top:24px;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/*@media all and (max-width:767px){*/
ul.nav-menu{
    position:absolute;
    top:45px;
    width:100%;
    height:0;
    padding:0;
    overflow:hidden;
}
ul.nav-menu.active{
    height:auto;
}
ul.nav-menu li{
    width:100%;
    border-bottom: 1px solid #aaa;;
}
ul.nav-menu li a{
    width:100%;
    padding:0;
    text-align:center;
    background-color:#2c2c2c;
}
ul.nav-menu li a:hover{
    background-color:#1c1c1c;
}
.nav-toggle{
    display:block;
}
nav.navigation {
    background-color: #11999e;

}    
/*}*/
@media all and (min-width:768px){
    .nav-overlay.active{
        visibility:hidden;
        opacity:0;
    }
}

.select{
    text-align: initial;
}
select, input, button,.select2, .button{
    border: 1px solid #aaa;
    border-radius: 4px;
    max-width:100%;
    box-sizing: border-box;
}
input{
    text-align:center;
}
.form-group label{
    display: inline-block;
    margin-bottom: 3px;
}
select, input,button,.select2, .button{
    height: 48px;
    box-sizing:border-box;
    width: 100%;
    overflow: hidden;
    font-size: 120%;
    background-color: #F4F4F4;
    line-height: 48px;

}


@media all and (max-width:550px){
    .form-group{
        margin-bottom: 5px;
    }
}
.nav-menu-inline{
    list-style-type: none;
    margin:0px;
    padding: 0px;
    text-align: center;
    font-size: 16px;
}
.nav-menu-inline li{
    display: inline;
    margin: 5px;
}

/*http://jenniferperrin.com/projects/flexgrid/*/
.flex-grid {
    box-sizing: border-box;
    margin: 0 auto;
    padding: 0;
}

.fg-row {
    box-sizing: border-box;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1em;
}

.fg-row-align-center { justify-content: center; }
.fg-row-reverse { flex-direction: row-reverse; }

.fg-1,.fg-xs-1, .fg-sm-1, .fg-md-1, .fg-lg-1,
.fg-2,.fg-xs-2, .fg-sm-2, .fg-md-2, .fg-lg-2,
.fg-3,.fg-xs-3, .fg-sm-3, .fg-md-3, .fg-lg-3,
.fg-4,.fg-xs-4, .fg-sm-4, .fg-md-4, .fg-lg-4,
.fg-5,.fg-xs-5, .fg-sm-5, .fg-md-5, .fg-lg-5,
.fg-6,.fg-xs-6, .fg-sm-6, .fg-md-6, .fg-lg-6,
.fg-7,.fg-xs-7, .fg-sm-7, .fg-md-7, .fg-lg-7,
.fg-8,.fg-xs-8, .fg-sm-8, .fg-md-8, .fg-lg-8,
.fg-9,.fg-xs-9, .fg-sm-9, .fg-md-9, .fg-lg-9,
.fg-10,.fg-xs-10, .fg-sm-10, .fg-md-10, .fg-lg-10,
.fg-11,.fg-xs-11, .fg-sm-11, .fg-md-11, .fg-lg-11,
.fg-12,.fg-xs-12, .fg-sm-12, .fg-md-12, .fg-lg-12 {
    box-sizing: border-box;
    padding: 1em;
    width: 100%;
}
.fg-1,.fg-2,.fg-3,.fg-4,.fg-5,.fg-6,.fg-7,.fg-8,.fg-9,.fg-10,.fg-11,.fg-12{
    padding: .1em;

}
.fg-1 {
    max-width: calc(100% * (1 / 12));
    width: calc(100% * (1 / 12));
}
.fg-2 {
    max-width: calc(100% * (2 / 12));
    width: calc(100% * (2 / 12));
}
.fg-3 {
    max-width: calc(100% * (3 / 12));
    width: calc(100% * (3 / 12));
}
.fg-4 {
    max-width: calc(100% * (4 / 12));
    width: calc(100% * (4 / 12));
}
.fg-5 {
    max-width: calc(100% * (5 / 12));
    width: calc(100% * (5 / 12));
}
.fg-6 {
    max-width: calc(100% * (6 / 12));
    width: calc(100% * (6 / 12));
}
.fg-7 {
    max-width: calc(100% * (7 / 12));
    width: calc(100% * (7 / 12));
}
.fg-8 {
    max-width: calc(100% * (8 / 12));
    width: calc(100% * (8 / 12));
}
.fg-9 {
    max-width: calc(100% * (9 / 12));
    width: calc(100% * (9 / 12));
}
.fg-10 {
    max-width: calc(100% * (10 / 12));
    width: calc(100% * (10 / 12));
}
.fg-11 {
    max-width: calc(100% * (11 / 12));
    width: calc(100% * (11 / 12));
}
.fg-12 {
    max-width: calc(100% * (12 / 12));
    width: calc(100% * (12 / 12));
}
@media (min-width: 540px) {
    .flex-grid { max-width: 540px; 	}
    .fg-xs-1 {
        max-width: calc(100% * (1 / 12));
        width: calc(100% * (1 / 12));
    }
    .fg-xs-2 {
        max-width: calc(100% * (2 / 12));
        width: calc(100% * (2 / 12));
    }
    .fg-xs-3 {
        max-width: calc(100% * (3 / 12));
        width: calc(100% * (3 / 12));
    }
    .fg-xs-4 {
        max-width: calc(100% * (4 / 12));
        width: calc(100% * (4 / 12));
    }
    .fg-xs-5 {
        max-width: calc(100% * (5 / 12));
        width: calc(100% * (5 / 12));
    }
    .fg-xs-6 {
        max-width: calc(100% * (6 / 12));
        width: calc(100% * (6 / 12));
    }
    .fg-xs-7 {
        max-width: calc(100% * (7 / 12));
        width: calc(100% * (7 / 12));
    }
    .fg-xs-8 {
        max-width: calc(100% * (8 / 12));
        width: calc(100% * (8 / 12));
    }
    .fg-xs-9 {
        max-width: calc(100% * (9 / 12));
        width: calc(100% * (9 / 12));
    }
    .fg-xs-10 {
        max-width: calc(100% * (10 / 12));
        width: calc(100% * (10 / 12));
    }
    .fg-xs-11 {
        max-width: calc(100% * (11 / 12));
        width: calc(100% * (11 / 12));
    }
    .fg-xs-12 {
        max-width: calc(100% * (12 / 12));
        width: calc(100% * (12 / 12));
    }
}
@media (min-width: 768px) {
    .flex-grid { max-width: 768px; }
    .fg-sm-1 {
        max-width: calc(100% * (1 / 12));
        width: calc(100% * (1 / 12));
    }
    .fg-sm-2 {
        max-width: calc(100% * (2 / 12));
        width: calc(100% * (2 / 12));
    }
    .fg-sm-3 {
        max-width: calc(100% * (3 / 12));
        width: calc(100% * (3 / 12));
    }
    .fg-sm-4 {
        max-width: calc(100% * (4 / 12));
        width: calc(100% * (4 / 12));
    }
    .fg-sm-5 {
        max-width: calc(100% * (5 / 12));
        width: calc(100% * (5 / 12));
    }
    .fg-sm-6 {
        max-width: calc(100% * (6 / 12));
        width: calc(100% * (6 / 12));
    }
    .fg-sm-7 {
        max-width: calc(100% * (7 / 12));
        width: calc(100% * (7 / 12));
    }
    .fg-sm-8 {
        max-width: calc(100% * (8 / 12));
        width: calc(100% * (8 / 12));
    }
    .fg-sm-9 {
        max-width: calc(100% * (9 / 12));
        width: calc(100% * (9 / 12));
    }
    .fg-sm-10 {
        max-width: calc(100% * (10 / 12));
        width: calc(100% * (10 / 12));
    }
    .fg-sm-11 {
        max-width: calc(100% * (11 / 12));
        width: calc(100% * (11 / 12));
    }
    .fg-sm-12 {
        max-width: calc(100% * (12 / 12));
        width: calc(100% * (12 / 12));
    }
}
@media (min-width: 992px) {
    .flex-grid { max-width: 992px; }
    .fg-md-1 {
        max-width: calc(100% * (1 / 12));
        width: calc(100% * (1 / 12));
    }
    .fg-md-2 {
        max-width: calc(100% * (2 / 12));
        width: calc(100% * (2 / 12));
    }
    .fg-md-3 {
        max-width: calc(100% * (3 / 12));
        width: calc(100% * (3 / 12));
    }
    .fg-md-4 {
        max-width: calc(100% * (4 / 12));
        width: calc(100% * (4 / 12));
    }
    .fg-md-5 {
        max-width: calc(100% * (5 / 12));
        width: calc(100% * (5 / 12));
    }
    .fg-md-6 {
        max-width: calc(100% * (6 / 12));
        width: calc(100% * (6 / 12));
    }
    .fg-md-7 {
        max-width: calc(100% * (7 / 12));
        width: calc(100% * (7 / 12));
    }
    .fg-md-8 {
        max-width: calc(100% * (8 / 12));
        width: calc(100% * (8 / 12));
    }
    .fg-md-9 {
        max-width: calc(100% * (9 / 12));
        width: calc(100% * (9 / 12));
    }
    .fg-md-10 {
        max-width: calc(100% * (10 / 12));
        width: calc(100% * (10 / 12));
    }
    .fg-md-11 {
        max-width: calc(100% * (11 / 12));
        width: calc(100% * (11 / 12));
    }
    .fg-md-12 {
        max-width: calc(100% * (12 / 12));
        width: calc(100% * (12 / 12));
    }
}
@media (min-width: 1200px) {
    .flex-grid { max-width: 1200px; }
    .fg-lg-1 {
        max-width: calc(100% * (1 / 12));
        width: calc(100% * (1 / 12));
    }
    .fg-lg-2 {
        max-width: calc(100% * (2 / 12));
        width: calc(100% * (2 / 12));
    }
    .fg-lg-3 {
        max-width: calc(100% * (3 / 12));
        width: calc(100% * (3 / 12));
    }
    .fg-lg-4 {
        max-width: calc(100% * (4 / 12));
        width: calc(100% * (4 / 12));
    }
    .fg-lg-5 {
        max-width: calc(100% * (5 / 12));
        width: calc(100% * (5 / 12));
    }
    .fg-lg-6 {
        max-width: calc(100% * (6 / 12));
        width: calc(100% * (6 / 12));
    }
    .fg-lg-7 {
        max-width: calc(100% * (7 / 12));
        width: calc(100% * (7 / 12));
    }
    .fg-lg-8 {
        max-width: calc(100% * (8 / 12));
        width: calc(100% * (8 / 12));
    }
    .fg-lg-9 {
        max-width: calc(100% * (9 / 12));
        width: calc(100% * (9 / 12));
    }
    .fg-lg-10 {
        max-width: calc(100% * (10 / 12));
        width: calc(100% * (10 / 12));
    }
    .fg-lg-11 {
        max-width: calc(100% * (11 / 12));
        width: calc(100% * (11 / 12));
    }
    .fg-lg-12 {
        max-width: calc(100% * (12 / 12));
        width: calc(100% * (12 / 12));
    }
}

.bg-primary {
    background-color: #007bff !important;
}

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
    background-color: #0062cc !important;
}

.bg-secondary {
    background-color: #6c757d !important;
}

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
    background-color: #545b62 !important;
}

.bg-success {
    background-color: #28a745 !important;
}

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
    background-color: #1e7e34 !important;
}

.bg-info {
    background-color: #17a2b8 !important;
}

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
    background-color: #117a8b !important;
}

.bg-warning {
    background-color: #ffc107 !important;
}

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
    background-color: #d39e00 !important;
}

.bg-danger {
    background-color: #dc3545 !important;
}

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
    background-color: #bd2130 !important;
}

.bg-light {
    background-color: #f8f9fa !important;
}

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
    background-color: #dae0e5 !important;
}

.bg-dark {
    background-color: #343a40 !important;
}

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
    background-color: #1d2124 !important;
}

.bg-white {
    background-color: #fff !important;
}

.bg-transparent {
    background-color: transparent !important;
}

.button-small{
    font-size: 10px;
    margin: 0px;
    padding: 1px;
    line-height: 1.5;
    border-radius: .2rem;
    color: #fff;
    background-color: #dc3545;
    border-color: #dc3545;
    display: inline-block;
    font-weight: 400;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    border-radius: .25rem;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
}
.pull-right{
    font-size: 10px;
    padding: .25rem!important;
    float: right!important;
    font-size: 80%;
    font-weight: 400;
}
.pull-left{
    float: left!important;
}
.table {
    width: 100%;
    margin-bottom: 1rem;
    background-color: transparent;
}
.table th,
.table td {
    padding: 0.75rem;
    vertical-align: top;
    border-top: 1px solid #dee2e6;
}

.table thead th {
    vertical-align: bottom;
    border-bottom: 2px solid #dee2e6;
}

.table tbody + tbody {
    border-top: 2px solid #dee2e6;
}

.table .table {
    background-color: #fff;
}

.table-sm th,
.table-sm td {
    padding: 0.3rem;
}

.table-bordered {
    border: 1px solid #dee2e6;
}

.table-bordered th,
.table-bordered td {
    border: 1px solid #dee2e6;
}

.table-bordered thead th,
.table-bordered thead td {
    border-bottom-width: 2px;
}

.table-borderless th,
.table-borderless td,
.table-borderless thead th,
.table-borderless tbody + tbody {
    border: 0;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(0, 0, 0, 0.05);
}

.table-hover tbody tr:hover {
    background-color: rgba(0, 0, 0, 0.075);
}

.table-primary,
.table-primary > th,
.table-primary > td {
    background-color: #b8daff;
}

.table-hover .table-primary:hover {
    background-color: #9fcdff;
}

.table-hover .table-primary:hover > td,
.table-hover .table-primary:hover > th {
    background-color: #9fcdff;
}


@media (max-width: 575.98px) {
    .table-responsive-sm {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-sm > .table-bordered {
        border: 0;
    }
}

@media (max-width: 767.98px) {
    .table-responsive-md {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .table-responsive-md > .table-bordered {
        border: 0;
    }
}

.table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.table-responsive > .table-bordered {
    border: 0;
}

.btn {
    display: inline-block;
    font-weight: 400;
    text-align: center;
    /*white-space: nowrap;*/
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 0.25rem;
    transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

@media all and (prefers-reduced-motion: reduce) {
    .btn {
        transition: none;
    }
}

.btn:hover, .btn:focus {
    text-decoration: none;
}

.btn:focus, .btn.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.btn.disabled, .btn:disabled {
    opacity: 0.65;
}

.btn:not(:disabled):not(.disabled) {
    cursor: pointer;
}

a.btn.disabled,
fieldset:disabled a.btn {
    pointer-events: none;
}

.btn-primary {
    color: #fff;
    background-color: #11999e;
    border-color: #11999e;
}

.btn-primary:hover {
    color: #fff;
    background-color: #1bb2b7;
    border-color: #1bb2b7;
}

.btn-primary:focus, .btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-primary.disabled, .btn-primary:disabled {
    color: #fff;
    background-color: #007bff;
    border-color: #007bff;
}

.btn-primary:not(:disabled):not(.disabled):active, .btn-primary:not(:disabled):not(.disabled).active,
.show > .btn-primary.dropdown-toggle {
    color: #fff;
    background-color: #0062cc;
    border-color: #005cbf;
}

.btn-primary:not(:disabled):not(.disabled):active:focus, .btn-primary:not(:disabled):not(.disabled).active:focus,
.show > .btn-primary.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.5);
}

.btn-link {
    font-weight: 400;
    color: #007bff;
    background-color: transparent;
}

.btn-link:hover {
    color: #0056b3;
    text-decoration: underline;
    background-color: transparent;
    border-color: transparent;
}

.btn-link:focus, .btn-link.focus {
    text-decoration: underline;
    border-color: transparent;
    box-shadow: none;
}

.btn-link:disabled, .btn-link.disabled {
    color: #6c757d;
    pointer-events: none;
}

.btn-sm, .btn-group-sm > .btn {
    padding: 0.25rem 0.5rem;
    font-size: 0.875rem;
    line-height: 1.5;
    border-radius: 0.2rem;
}

.btn-sm + .dropdown-toggle-split, .btn-group-sm > .btn + .dropdown-toggle-split {
    padding-right: 0.375rem;
    padding-left: 0.375rem;
}

.btn-success {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:hover {
    color: #fff;
    background-color: #218838;
    border-color: #1e7e34;
}

.btn-success:focus, .btn-success.focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}

.btn-success.disabled, .btn-success:disabled {
    color: #fff;
    background-color: #28a745;
    border-color: #28a745;
}

.btn-success:not(:disabled):not(.disabled):active, .btn-success:not(:disabled):not(.disabled).active,
.show > .btn-success.dropdown-toggle {
    color: #fff;
    background-color: #1e7e34;
    border-color: #1c7430;
}

.btn-success:not(:disabled):not(.disabled):active:focus, .btn-success:not(:disabled):not(.disabled).active:focus,
.show > .btn-success.dropdown-toggle:focus {
    box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.5);
}
.breadcrumb {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    list-style: none;
    background-color: #e9ecef;
    border-radius: 0.25rem;
    font-size: 80%;
}

.breadcrumb-item + .breadcrumb-item {
    padding-left: 0.1rem;
}

.breadcrumb-item + .breadcrumb-item::before {
    display: inline-block;
    color: #6c757d;
    content: "/";
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: underline;
}

.breadcrumb-item + .breadcrumb-item:hover::before {
    text-decoration: none;
}

.breadcrumb-item.active {
    color: #6c757d;
}

.alert {
    position: relative;
    padding: 0.75rem 1.25rem;
    margin-bottom: 1rem;
    border: 1px solid transparent;
    border-radius: 0.25rem;
}

.alert-heading {
    color: inherit;
}

.alert-link {
    font-weight: 700;
}

.alert-dismissible {
    padding-right: 4rem;
}

.alert-dismissible .close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 0.75rem 1.25rem;
    color: inherit;
}

.alert-primary {
    color: #004085;
    background-color: #cce5ff;
    border-color: #b8daff;
}

.alert-primary hr {
    border-top-color: #9fcdff;
}

.alert-primary .alert-link {
    color: #002752;
}

.alert-secondary {
    color: #383d41;
    background-color: #e2e3e5;
    border-color: #d6d8db;
}

.alert-secondary hr {
    border-top-color: #c8cbcf;
}

.alert-secondary .alert-link {
    color: #202326;
}

.alert-success {
    color: #155724;
    background-color: #d4edda;
    border-color: #c3e6cb;
}

.alert-success hr {
    border-top-color: #b1dfbb;
}

.alert-success .alert-link {
    color: #0b2e13;
}

.alert-info {
    color: #0c5460;
    background-color: #d1ecf1;
    border-color: #bee5eb;
}

.alert-info hr {
    border-top-color: #abdde5;
}

.alert-info .alert-link {
    color: #062c33;
}

.alert-warning {
    color: #856404;
    background-color: #fff3cd;
    border-color: #ffeeba;
}

.alert-warning hr {
    border-top-color: #ffe8a1;
}

.alert-warning .alert-link {
    color: #533f03;
}

.alert-danger {
    color: #721c24;
    background-color: #f8d7da;
    border-color: #f5c6cb;
}

.alert-danger hr {
    border-top-color: #f1b0b7;
}

.alert-danger .alert-link {
    color: #491217;
}

.alert-light {
    color: #818182;
    background-color: #fefefe;
    border-color: #fdfdfe;
}

.alert-light hr {
    border-top-color: #ececf6;
}

.alert-light .alert-link {
    color: #686868;
}

.alert-dark {
    color: #1b1e21;
    background-color: #d6d8d9;
    border-color: #c6c8ca;
}

.alert-dark hr {
    border-top-color: #b9bbbe;
}

.alert-dark .alert-link {
    color: #040505;
}


.close {
    float: right;
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    opacity: .5;
}

.close:not(:disabled):not(.disabled) {
    cursor: pointer;
}

.close:not(:disabled):not(.disabled):hover, .close:not(:disabled):not(.disabled):focus {
    color: #000;
    text-decoration: none;
    opacity: .75;
}

button.close {
    padding: 0;
    background-color: transparent;
    border: 0;
    -webkit-appearance: none;
}


.align-baseline {
    vertical-align: baseline !important;
}

.align-top {
    vertical-align: top !important;
}

.align-middle {
    vertical-align: middle !important;
}

.align-bottom {
    vertical-align: bottom !important;
}

.align-text-bottom {
    vertical-align: text-bottom !important;
}

.align-text-top {
    vertical-align: text-top !important;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.w-25 {
    width: 25% !important;
}

.w-50 {
    width: 50% !important;
}

.w-75 {
    width: 75% !important;
}

.w-100 {
    width: 100% !important;
}

.w-auto {
    width: auto !important;
}

.h-25 {
    height: 25% !important;
}

.h-50 {
    height: 50% !important;
}

.h-75 {
    height: 75% !important;
}

.h-100 {
    height: 100% !important;
}

.h-auto {
    height: auto !important;
}

.mw-100 {
    max-width: 100% !important;
}

.mh-100 {
    max-height: 100% !important;
}

.m-0 {
    margin: 0 !important;
}

.mt-0,
.my-0 {
    margin-top: 0 !important;
}

.mr-0,
.mx-0 {
    margin-right: 0 !important;
}

.mb-0,
.my-0 {
    margin-bottom: 0 !important;
}

.ml-0,
.mx-0 {
    margin-left: 0 !important;
}

.m-1 {
    margin: 0.25rem !important;
}

.mt-1,
.my-1 {
    margin-top: 0.25rem !important;
}

.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}

.mb-1,
.my-1 {
    margin-bottom: 0.25rem !important;
}

.ml-1,
.mx-1 {
    margin-left: 0.25rem !important;
}

.m-2 {
    margin: 0.5rem !important;
}

.mt-2,
.my-2 {
    margin-top: 0.5rem !important;
}

.mr-2,
.mx-2 {
    margin-right: 0.5rem !important;
}

.mb-2,
.my-2 {
    margin-bottom: 0.5rem !important;
}

.ml-2,
.mx-2 {
    margin-left: 0.5rem !important;
}

.m-3 {
    margin: 1rem !important;
}

.mt-3,
.my-3 {
    margin-top: 1rem !important;
}

.mr-3,
.mx-3 {
    margin-right: 1rem !important;
}

.mb-3,
.my-3 {
    margin-bottom: 1rem !important;
}

.ml-3,
.mx-3 {
    margin-left: 1rem !important;
}

.m-4 {
    margin: 1.5rem !important;
}

.mt-4,
.my-4 {
    margin-top: 1.5rem !important;
}

.mr-4,
.mx-4 {
    margin-right: 1.5rem !important;
}

.mb-4,
.my-4 {
    margin-bottom: 1.5rem !important;
}

.ml-4,
.mx-4 {
    margin-left: 1.5rem !important;
}

.m-5 {
    margin: 3rem !important;
}

.mt-5,
.my-5 {
    margin-top: 3rem !important;
}

.mr-5,
.mx-5 {
    margin-right: 3rem !important;
}

.mb-5,
.my-5 {
    margin-bottom: 3rem !important;
}

.ml-5,
.mx-5 {
    margin-left: 3rem !important;
}

.p-0 {
    padding: 0 !important;
}

.pt-0,
.py-0 {
    padding-top: 0 !important;
}

.pr-0,
.px-0 {
    padding-right: 0 !important;
}

.pb-0,
.py-0 {
    padding-bottom: 0 !important;
}

.pl-0,
.px-0 {
    padding-left: 0 !important;
}

.p-1 {
    padding: 0.25rem !important;
}

.pt-1,
.py-1 {
    padding-top: 0.25rem !important;
}

.pr-1,
.px-1 {
    padding-right: 0.25rem !important;
}

.pb-1,
.py-1 {
    padding-bottom: 0.25rem !important;
}

.pl-1,
.px-1 {
    padding-left: 0.25rem !important;
}

.p-2 {
    padding: 0.5rem !important;
}

.pt-2,
.py-2 {
    padding-top: 0.5rem !important;
}

.pr-2,
.px-2 {
    padding-right: 0.5rem !important;
}

.pb-2,
.py-2 {
    padding-bottom: 0.5rem !important;
}

.pl-2,
.px-2 {
    padding-left: 0.5rem !important;
}

.p-3 {
    padding: 1rem !important;
}

.pt-3,
.py-3 {
    padding-top: 1rem !important;
}

.pr-3,
.px-3 {
    padding-right: 1rem !important;
}

.pb-3,
.py-3 {
    padding-bottom: 1rem !important;
}

.pl-3,
.px-3 {
    padding-left: 1rem !important;
}

.p-4 {
    padding: 1.5rem !important;
}

.pt-4,
.py-4 {
    padding-top: 1.5rem !important;
}

.pr-4,
.px-4 {
    padding-right: 1.5rem !important;
}

.pb-4,
.py-4 {
    padding-bottom: 1.5rem !important;
}

.pl-4,
.px-4 {
    padding-left: 1.5rem !important;
}

.p-5 {
    padding: 3rem !important;
}

.pt-5,
.py-5 {
    padding-top: 3rem !important;
}

.pr-5,
.px-5 {
    padding-right: 3rem !important;
}

.pb-5,
.py-5 {
    padding-bottom: 3rem !important;
}

.pl-5,
.px-5 {
    padding-left: 3rem !important;
}

.m-auto {
    margin: auto !important;
}

.mt-auto,
.my-auto {
    margin-top: auto !important;
}

.mr-auto,
.mx-auto {
    margin-right: auto !important;
}

.mb-auto,
.my-auto {
    margin-bottom: auto !important;
}

.ml-auto,
.mx-auto {
    margin-left: auto !important;
}

.text-justify {
    text-align: justify !important;
}

.text-nowrap {
    white-space: nowrap !important;
}

.text-truncate {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.text-left {
    text-align: left !important;
}

.text-right {
    text-align: right !important;
}

.text-center {
    text-align: center !important;
}

.float-left {
    float: left !important;
}

.float-right {
    float: right !important;
}

.float-none {
    float: none !important;
}

@media (min-width: 576px) {
    .text-sm-left {
        text-align: left !important;
    }
    .text-sm-right {
        text-align: right !important;
    }
    .text-sm-center {
        text-align: center !important;
    }
}

@media (min-width: 768px) {
    .text-md-left {
        text-align: left !important;
    }
    .text-md-right {
        text-align: right !important;
    }
    .text-md-center {
        text-align: center !important;
    }
}

@media (min-width: 992px) {
    .text-lg-left {
        text-align: left !important;
    }
    .text-lg-right {
        text-align: right !important;
    }
    .text-lg-center {
        text-align: center !important;
    }
}

@media (min-width: 1200px) {
    .text-xl-left {
        text-align: left !important;
    }
    .text-xl-right {
        text-align: right !important;
    }
    .text-xl-center {
        text-align: center !important;
    }
}

.text-lowercase {
    text-transform: lowercase !important;
}

.text-uppercase {
    text-transform: uppercase !important;
}

.text-capitalize {
    text-transform: capitalize !important;
}

.font-weight-light {
    font-weight: 300 !important;
}

.font-weight-normal {
    font-weight: 400 !important;
}

.font-weight-bold {
    font-weight: 700 !important;
}

.font-italic {
    font-style: italic !important;
}

.text-white {
    color: #fff !important;
}

.text-primary {
    color: #007bff !important;
}

a.text-primary:hover, a.text-primary:focus {
    color: #0062cc !important;
}

.text-secondary {
    color: #6c757d !important;
}

a.text-secondary:hover, a.text-secondary:focus {
    color: #545b62 !important;
}

.text-success {
    color: #28a745 !important;
}

a.text-success:hover, a.text-success:focus {
    color: #1e7e34 !important;
}

.text-info {
    color: #17a2b8 !important;
}

a.text-info:hover, a.text-info:focus {
    color: #117a8b !important;
}

.text-warning {
    color: #ffc107 !important;
}

a.text-warning:hover, a.text-warning:focus {
    color: #d39e00 !important;
}

.text-danger {
    color: #dc3545 !important;
}

a.text-danger:hover, a.text-danger:focus {
    color: #bd2130 !important;
}

.text-light {
    color: #f8f9fa !important;
}

a.text-light:hover, a.text-light:focus {
    color: #dae0e5 !important;
}

.text-dark {
    color: #343a40 !important;
}

a.text-dark:hover, a.text-dark:focus {
    color: #1d2124 !important;
}

.text-body {
    color: #212529 !important;
}

.text-muted {
    color: #6c757d !important;
}

.text-black-50 {
    color: rgba(0, 0, 0, 0.5) !important;
}

.text-white-50 {
    color: rgba(255, 255, 255, 0.5) !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

.visible {
    visibility: visible !important;
}

.invisible {
    visibility: hidden !important;
}
.container{
    margin:auto;
}


.top-buffer{
    margin-top:10px;
}

.wms-icon{
    z-index:2;
    background-color: #444  ;
    border-radius: 2px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -ms-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    overflow:auto;
    opacity:.7;
    color: #FFF;
    display: inline-block;    
    text-align: center;
    line-height: 48px;
    width: 48px;
    height: 48px;
}
.wms-icon:hover{ opacity:1;}
.day{
    /*font-size: 40px;*/
    height: auto;
    border: none;
}

.button{
    cursor: pointer;
    display: inline-block;
    text-align: center;
}
.converter-details-container{
    padding: 2px;
}
.Converter-table span{
    width:100%;
}
.converter-details-container{
    border-radius: 5px;
}
.f-label{
    background-color: #11999e;
    color: #fff;
    padding: 5px;
    border-radius: 5px;
    /* margin-bottom: 3px; */
    display: inline-block;
}

.output, .converter-details-container input{
    background-color: #000;
    color: #fff;
    font-size: 28px;
    border-radius: 4px;
    padding: 3px;
    text-align: center;
}
.converter-details-container textarea{
    color: #000;
    font-size: 12px;
    border-radius: 4px;
    padding: 3px;
    text-align: center;
    width: 99%;
    resize:none;
    background-color: #b8daff;
    height: 250px;
    border: none;
/*    font-family: inherit;*/
}
.converter-details-container .fb-share{
    height: 50px;
    font-size: 32px;
    color: #000;
    border-radius: 4px;
    text-align: initial;
    padding: 5px;
    padding-left: 60px;
    margin-right: -20px;
    cursor: pointer;
    background:#b8daff url(images/fb.png) left no-repeat;
}
.converter-details-container .error{
    display: none;
}
@media all and (min-width: 350px){
    .converter-details-container input{
        font-size: 16px;
    }   
    .converter-details-container textarea{
        font-size: 13px;        
    }
}
@media all and (min-width: 450px){
    .converter-details-container input{
        font-size: 22px;
    }    
    .converter-details-container textarea{
        font-size: 14px;        
    }
}
@media all and (min-width: 550px){
    .converter-details-container input{
        font-size: 26px;
    }    
    .converter-details-container textarea{
        font-size: 15px;        
    }
}
@media all and (min-width: 650px){
    .converter-details-container input{
        font-size: 32px;
    }    
    .converter-details-container textarea{
        font-size: 16px;        
    }
}

.label{
    font-size: 14px;
}
.output-res{
    font-size: 14px;
}   
@media all and (min-width: 400px){
    .output-res{
        font-size: 14px;
    }   
}
@media all and (min-width: 500px){
    .output-res{
        font-size: 18px;
    }    
}
@media all and (min-width: 600px){
    .output-res{
        font-size: 22px;
    }    
}
@media all and (min-width: 700px){
    .output-res{
        font-size: 28px;
    }    
}

.main-today .day,.main-today .gregory,.main-today .hijri{
    font-size: 20px;
}
@media all and (max-width: 350px){
    .main-today .day,.main-today .gregory,.main-today .hijri{
        font-size: 18px;
    }
}
@media all and (max-width: 320px){
    .main-today .day,.main-today .gregory,.main-today .hijri{
        font-size: 16px;
    }
}

.main-today div{
    background-color: #11999E;
    padding: 5px;
    margin: 5px;
    border-radius: 20px;
    color:#ffffff;
}
.feature{
    background-image: linear-gradient(to left ,#E1FEFB, orange, #b8daff);

}

.date-hor, .hol-hor{
    height: 40px; 
    line-height: 40px; 
    color: #fff;
}
.date-hor a, .hol-hor a{
    color: #fff;
}
.date-hor-in{
    margin: 0 30px; 
}
.date-hor{
    background-color: seagreen;
}
.hol-hor{
    background-color: #000;
}
.hol-hor a{
}
.hor-title{
    text-align: start;
    padding: 0px 5px;
}
.more{
    border-bottom: 1px solid;
}
a.day-link {
    width: 100%; 
    height: 100%;
    display: block;
    color: initial;
}
.print-only{
    display: none;
}
.main-date{
    text-align: center;
    color: #11999e;
    border: 1px solid #11999e;
    border-radius: 5px;
    padding:5px;
}
.main-date .main-day{
    font-size: 80px;
    font-family: monospace;
    font-weight: bold;
    margin-bottom: -20px;
}
.main-date .main-month{
    font-size: 30px;
}
.main-date .section4{
    font-size: 24px;
    background-color: #11999e;
    color: #fff;
    border-radius: 10px;
    padding: 0px 4px;
}
.main-year.main-gyear{
    text-align: left;
}
.main-year.main-hyear{
    text-align: right;
}
.main-date .main-weekday{
    font-size: 50px;
    margin-bottom: -10px;
}
.main-date .main-syriac{
    font-size: 16px;
}
.main-date .section1,.main-date .section3{
    border: 2px solid #11999e;
    border-radius: 10px;
}
.main-date .section2{
    margin-bottom: 5px;
}
.prayer-table-c{
    overflow-x: scroll;
}
.t{
    width: 100%;
    height: 450px;
}
.prayer-table{
    font-size: 12px;
}
.city{
    border: 1px solid #ddd;
    padding: 3px;
    border-radius: 5px;
    margin: 5px;
    display: inline-block;
}
#map {
    height: 400px;
    /* The height is 400 pixels */
    width: 100%;
    /* The width is the width of the web page */
}
.next-prayer td{
    background-color: #f6c9cc;
}
.prayer-timers{
    font-size: 40px;
    border: 1px solid #28a745;
    border-radius: 5px;
    text-align: center;
}
.prayer-timer{
    background-color: #000;
    margin: 5px;
    border-radius: 5px;
    color: #fff;
}
@media all and (max-width: 450px){
    .prayer-timers .title{
        font-size: 30px;
    }
}

#eXTReMe {
    z-index: 1;
    visibility: hidden;
    position: absolute;
    z-index: 10000;
    display:none;
}
.google-map iframe{
    width: 100%;
    border: none;

}
.main-title{
    border: 1px solid #ccc;
    border-radius: 5px;
    padding: 5px 10px;
    display: inline-block;
    font-size: 30px;
    margin: 0px;
    background-color: #000;
    color: #fff;
}
label {
    display: inline;
}
input[type='checkbox'] { 
    height: auto;
    width:auto;
}
.takweem{
    padding-bottom: 10px;
}
.takweem-title{
    padding: 5px;
    font-weight: bold;
}
.error{
    color: #B00020;
}
.nav-title,.main-date{
    font-family: fantasy, sans-serif;
}
.nav-title{
/*text-shadow: 0 0 5px #FFF, 0 0 10px #FFF, 0 0 15px #FFF, 0 0 20px #11999e, 0 0 30px #11999e, 0 0 40px #11999e, 0 0 55px #11999e, 0 0 75px #11999e;*/
}
/*calendar*/
.container-calendar{

}
.content-calendar{
    background-color: transparent;
}
.calendar-container{
    width:100%;
    float:none;
    box-sizing: border-box;
    height: 340px;
}
@media all and (min-width: 800px){
    .calendar-container{
        width:50%;
        float:left; 
    }
}
@media all and (min-width: 1000px){
    .calendar-container{
        width:33.33%;
        float:left; 
    }
}
.calendar {
    font-family: Arial, sans-serif;
    margin: 5px;
    border: 1px solid lightblue;
    padding: 5px;
    border-radius: 5px;
    background: #fff;
}
/*Calendar Heading*/

.calendar-heading{
    /*text-align: center;*/
    margin: 0;
    padding-bottom: 10px;
    position: relative;
    box-sizing: border-box;
    background: midnightblue url(images/back.png) repeat-x;

}

.calendar-subheading1,.calendar-subheading2{
    font-size:40px;
    font-family: 'Anton', sans-serif;
    font-weight: bold;
    box-sizing: border-box;
}
.calendar-subheading1{
    font-family: fantasy, sans-serif;
    width:60%;
    float: left;
    padding-left: 5px;

}
.calendar-subheading2{
    font-size:40px;
    width:40%;
    text-align: right;
    padding-right: 5px;
    float: right;
}
@media all and (max-width: 500px){
    .calendar-subheading1,.calendar-subheading2,.calendar-country{
        text-align: center;
        float:none;
        width:100%;
    }
}
@media all and (max-width: 600px){
    .calendar-subheading1{
        font-size:35px;

    }
}

.calendar-subheading1,.primary-date,.secondary-date,.calendar-country{
    color: #fff;
    /*    background: -webkit-linear-gradient(45deg, #f0f1ce, #00ff95 80%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;*/
}

.secondary-date{
    font-size:30px;

}
@media all and (max-width: 610px){
    .secondary-date{
        font-size: 23px;
    }
}
.primary-date{
    font-size:40px;

}

.calendar-country{
    padding: 0 10px;
}
/*End Calendar Heading*/

.calendar .calendar-title {
    background-color: #CC0000;
    border-radius: 6px 6px 6px 6px;
    color: #FFFFFF;
    font-weight: bold;
    font-size: 20px;
    background-image: linear-gradient(to right ,#02dbe3, orange, #b8daff);
    height: 48px;
}
.calendar .calendar-title a{
    color: #FFFFFF;
}
.calendar-month-name{
    /*    height: 48px;
        line-height: 48px;*/
    padding: 0px 0px 0px 50px;
    background: url(images/islamic.png) no-repeat left top;
}
.prim-year{
    font-size: 14px;
    height: 20px;
}
.prim-month{
    height: 28px;
    line-height: 28px;
    overflow: hidden;
}
.calendar .calendar-title .title {
    background: none repeat scroll 0 0 transparent;
    border-color: rgba(0, 0, 0, 0);
    color: inherit;
    line-height: 1.8em;
    margin: 0 2.3em;
    text-align: center;
}
.calendar .calendar-subtitle{
    font-family: sans-serif;
    font-weight: 700;
}
.alt-months{
    padding: 0;   
}

.calendar .prev,.calendar .next{
    font-size: 10px;
    margin-bottom: 0px;
    height: 24px;
    line-height: 24px;
    padding: 0px 1px 0px 3px;
    overflow: hidden;
}
.prev{
    border-radius: 0 6px 0 0;
}
.next{
    border-radius: 0 0 6px 0;
}
.calendar .sm{
    font-size: 10px;
    padding: 0px 3px;
    margin-bottom: 0px;
    height: 33%;
    height: 16px;
    line-height: 16px;
}
.calendar .calendar-subtitle .next {
    float: right;
    text-align: right;
    border-radius: 0px 6px 6px 0px;
}
.calendar .calendar-subtitle .middle {
    text-align: center;
}

.calendar .calendar-subtitle .prev:hover, .calendar .calendar-subtitle .next:hover {
    opacity: 1;
}

.caledar-contents {
    border-collapse: separate;
    font-size: 0.9em;
    table-layout: fixed;
    width: 100%;
    height: 271px;
    border-spacing: 2px;

}

.caledar-contents thead tr{
    height: 10px;

}
.caledar-contents th {
    border: 0 none;
    font-weight: bold;
    padding: 0px;
    text-align: center;
    background-color: gainsboro;

}

.caledar-contents th .weekday {
    background-color: #EEEEEE;
    border: 1px solid #D8DCDF;
    color: #004276;
    display: block;
    height: 100%;
    position: relative;
}

.caledar-contents th .weekday:hover {
    background-color: #F6F6F6;
    border: 1px solid #CDD5DA;
    color: #111111;
}
.caledar-contents td.cell {
    background-color: #EEEEEE;
    border: 0 none;
    padding: 1px;
    position: relative;

    color: #004276;
    opacity: 0.2;
    position: relative;
}
.caledar-contents td.empty {
    background-color: #fff;
    border: 0 none;
    padding: 0px;
    color: #004276;
    opacity: 1;
    position: relative;
}
.caledar-contents td.day-is-holiday.current {
    background-color: #f3e3f8;
}
.caledar-contents td.day-is-islamic-holiday.current {
    background-color: #d8f9d8;
}
.caledar-contents td .day-c {
    /*    background-color: #EEEEEE;
        border: 1px solid #D8DCDF;
        color: #004276;
        display: block;
        opacity: 0.2;
        height: 100%;
        position: relative;
        box-sizing: border-box;*/
}

.caledar-contents td:hover {
    background-color: #F6F6F6;
    color: #111111;
}

.caledar-contents td.current  {
    font-weight: bold;
    opacity: 1;
}

.caledar-contents td.today {
    background-color: lightgreen;
    color: #444444;
    font-weight: bold;
    opacity: 1;
}
.calendar .hd{
    font-size: 16px;
    position: absolute;
    top: 1px;
    left: 1px;
}
.calendar span.gre {
    text-align: right;
    direction: rtl;
    font-size: 12px;
    display: block;
    position: absolute;
    bottom: 1px;
    right: 1px;
}
.calendar .holiday{
    position: absolute;
    right: 1px;
    top: 1px;
    z-index: 1;
}

.holidays-c{
    margin: 5px;
    padding: 0px 5px;
    overflow: hidden;
    background-color: #fff;
    border: 1px solid lightblue;
    border-radius: 5px;
    padding: 5px;
}
.holiday-c{
    white-space: nowrap;
}
.holiday-name{
    border-radius: 5px;
    display: inline-block;
    text-align: center;
    padding: 2px;
    vertical-align: middle;
    font-size: 10px;
}
.holiday{
    font-size: 10px;
    background: #F26A11;
    border-radius: 50%;
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    color: #fff;
    vertical-align: middle;
}
.calendar .islamic-holiday{
    position: absolute;
    right: auto;
    left: 1px;
    z-index: 1;
    bottom:0px
}
.islamic-holiday{
    font-size: 10px;
    background: #4caf50;
    border-radius: 50%;
    display: inline-block;
    width: 15px;
    height: 15px;
    line-height: 15px;
    text-align: center;
    color: #fff;
    vertical-align: middle;
}


.gm_1,.gm_3,.gm_5,.gm_7,.gm_9,.gm_11{
    color: #4caf50;
}
.gm_2,.gm_4,.gm_6,.gm_8,.gm_10,.gm_12{
    color: #ff5722;
}
.gm__1,.gm__3,.gm__5,.gm__7,.gm__9,.gm__11{
    background-color: #4caf50;
}
.gm__2,.gm__4,.gm__6,.gm__8,.gm__10,.gm__12{
    background-color: #ff5722;
}

.calendar .weekday{
    font-size:10px;
}
.scroll-today{
    display: none;
    background-image: url(images/location.png);
    position:fixed;
    bottom:60px;
    right:10px;
    cursor:pointer;
}
.timestamp{
    font-family: monospace;
}
.day-is-islamic-holiday{
    background-color: #f8d7da;
}
.day-is-national-holiday{
    background-color: #E5F0FF
}