/********** Template CSS **********/
:root {
    --primary: #B78D65;
    --light: #F8F8F8;
    --dark: #252525;
}

/*html, body {*/
body {
    max-width: 100%;
    overflow-x: hidden;
}

h1,
h2,
.h1,
.h2,
.fw-bold {
    font-weight: 600 !important;
}

h3,
h4,
.h3,
.h4,
.fw-medium {
    font-weight: 500 !important;
}

h5,
h6,
.h5,
.h6,
.fw-normal {
    font-weight: 400 !important;
}

.tblResult-Main td {
    border: solid 2px lightgrey;
}

.back-to-top {
    position: fixed;
    display: none;
    right: 30px;
    bottom: 30px;
    z-index: 99;
}


/*** Spinner ***/
#spinner {
    opacity: 0;
    visibility: hidden;
    transition: opacity .5s ease-out, visibility 0s linear .5s;
    z-index: 99999;
    /*background-color:blue;*/
}

#spinner.show {
    transition: opacity .5s ease-out, visibility 0s linear 0s;
    visibility: visible;
    opacity: 1;    
}

.spinner-circle 
{
    color: red !important 
}

/*** Button ***/
.btn {
    font-weight: 500;
    transition: .5s;
}

.btn.btn-primary,
.btn.btn-secondary {
    color: #FFFFFF;
}

.btn-square {
    width: 38px;
    height: 38px;
}

.btn-sm-square {
    width: 32px;
    height: 32px;
}

.btn-lg-square {
    width: 48px;
    height: 48px;
}

.btn-square,
.btn-sm-square,
.btn-lg-square {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: normal;
}

.btn-outline-body {
    color: var(--primary);
    border-color: #777777;
}

.btn-outline-body:hover {
    color: #FFFFFF;
    background: var(--primary);
    border-color: var(--primary);
}


/*** Navbar ***/
.navbar .dropdown-toggle::after {
    border: none;
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    vertical-align: middle;
    margin-left: 8px;
}

.navbar .navbar-nav .nav-link {
    margin-right: 30px;
    padding: 30px 0;
    color: var(--dark);
    font-weight: 500;
    text-transform: uppercase;
    outline: none;
}

.navbar .navbar-nav .nav-link:hover,
.navbar .navbar-nav .nav-link.active {
    color: var(--primary);
}

.navbar.sticky-top {
    top: -100px;
    transition: .5s;
}

@media (max-width: 991.98px) {
    .navbar .navbar-nav .nav-link {
        margin-right: 0;
        padding: 10px 0;
    }

    .navbar .navbar-nav {
        border-top: 1px solid #EEEEEE;
    }
}

@media (min-width: 992px) {
    .navbar .nav-item .dropdown-menu {
        display: block;
        visibility: hidden;
        top: 100%;
        transform: rotateX(-75deg);
        transform-origin: 0% 0%;
        transition: .5s;
        opacity: 0;
    }

    .navbar .nav-item:hover .dropdown-menu {
        transform: rotateX(0deg);
        visibility: visible;
        transition: .5s;
        opacity: 1;
    }
}


/*** Header ***/
.owl-carousel-inner {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    background: rgba(0, 0, 0, .5);    
}

@media (max-width: 768px) {
    .header-carousel .owl-carousel-item {
        position: relative;
        min-height: 500px;
    }

    .header-carousel .owl-carousel-item img {
        position: absolute;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .header-carousel .owl-carousel-item p {
        font-size: 16px !important;
    }
}

.header-carousel .owl-dots {
    position: absolute;
    width: 60px;
    height: 100%;
    top: 0;
    right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.header-carousel .owl-dots .owl-dot {
    position: relative;
    width: 45px;
    height: 45px;
    margin: 5px 0;
    background: var(--dark);
    transition: .5s;
}

.header-carousel .owl-dots .owl-dot.active {
    width: 60px;
    height: 60px;
}

.header-carousel .owl-dots .owl-dot img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    padding: 2px;
    transition: .5s;
    opacity: .3;
}

.header-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

.page-header {
    background: linear-gradient(rgba(0, 0, 0, .5), rgba(0, 0, 0, .5)), url(../img/carousel-1.jpg) center center no-repeat;
    background-size: cover;
}

.breadcrumb-item+.breadcrumb-item::before {
    color: var(--light);
}


/*** Section Title ***/
.section-title {
    color: var(--primary);
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
}


/*** Facts ***/
.fact-item .fact-icon {
    width: 120px;
    height: 120px;
    margin-top: -60px;
    margin-bottom: 1.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border-radius: 120px;
    transition: .5s;
}

.fact-item:hover .fact-icon {
    background: var(--dark);
}

.fact-item .fact-icon i {
    color: var(--primary);
    transition: .5;
}

.fact-item:hover .fact-icon i {
    color: #FFFFFF;
}


/*** About & Feature ***/
.about-img,
.feature-img {
    position: relative;
    height: 100%;
    min-height: 400px;
}

.about-img img,
.feature-img img {
    position: absolute;
    width: 60%;
    height: 80%;
    object-fit: cover;
}

.about-img img:last-child,
.feature-img img:last-child {
    margin: 20% 0 0 40%;
}

.about-img::before,
.feature-img::before {
    position: absolute;
    content: "";
    width: 60%;
    height: 80%;
    top: 10%;
    left: 20%;
    border: 5px solid var(--primary);
    z-index: -1;
}


/*** Service ***/
.service-item .bg-img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.service-item .service-text {
    background: var(--light);
    transition: .5s;
}

.service-item:hover .service-text {
    background: rgba(0, 0, 0, .7);
}

.service-item * {
    transition: .5;
}

.service-item:hover * {
    color: #FFFFFF;
}

.service-item .btn {
    width: 40px;
    height: 40px;
    display: inline-flex;
    align-items: center;
    color: var(--dark);
    background: #FFFFFF;
    white-space: nowrap;
    overflow: hidden;
    transition: .5s;
}

.service-item:hover .btn {
    width: 140px;
}


/*** Project ***/
.project .nav .nav-link {
    background: var(--light);
    transition: .5s;
}

.project .nav .nav-link.active {
    background: var(--primary);
}

.project .nav .nav-link.active h3 {
    color: #FFFFFF !important;
}


/*** Team ***/
.team-items {
    margin: -.75rem;
}

.team-item {
    padding: .75rem;
}

.team-item::after {
    position: absolute;
    content: "";
    width: 100%;
    height: 0;
    top: 0;
    left: 0;
    background: #FFFFFF;
    transition: .5s;
    z-index: -1;
}

.team-item:hover::after {
    height: 100%;
    background: var(--primary);
}

.team-item .team-social {
    position: absolute;
    width: 100%;
    bottom: -20px;
    left: 0;
}

.team-item .team-social .btn {
    display: inline-flex;
    margin: 0 2px;
    color: var(--primary);
    background: var(--light);
}

.team-item .team-social .btn:hover {
    color: #FFFFFF;
    background: var(--primary);
}


/*** Appointment ***/
.bootstrap-datetimepicker-widget.bottom {
    top: auto !important;
}

.bootstrap-datetimepicker-widget .table * {
    border-bottom-width: 0px;
}

.bootstrap-datetimepicker-widget .table th {
    font-weight: 500;
}

.bootstrap-datetimepicker-widget.dropdown-menu {
    padding: 10px;
    border-radius: 2px;
}

.bootstrap-datetimepicker-widget table td.active,
.bootstrap-datetimepicker-widget table td.active:hover {
    background: var(--primary);
}

.bootstrap-datetimepicker-widget table td.today::before {
    border-bottom-color: var(--primary);
}


/*** Testimonial ***/
.testimonial-carousel {
    display: flex !important;
    flex-direction: column-reverse;
    max-width: 700px;
    margin: 0 auto;
}

.testimonial-carousel .owl-dots {
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.testimonial-carousel .owl-dots .owl-dot {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 5px;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active {
    width: 100px;
    height: 100px;
}

.testimonial-carousel .owl-dots .owl-dot::after {
    position: absolute;
    width: 40px;
    height: 40px;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    content: "\f10d";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    background: #FFFFFF;
    border-radius: 40px;
    transition: .5s;
    opacity: 0;
}

.testimonial-carousel .owl-dots .owl-dot.active::after {
    opacity: 1;
}

.testimonial-carousel .owl-dots .owl-dot img {
    opacity: .4;
    transition: .5s;
}

.testimonial-carousel .owl-dots .owl-dot.active img {
    opacity: 1;
}

/* Tooltip */
.tooltip-fodi {
    position: relative;
    /*display: inline-block;
    border-bottom: 1px dotted #ccc;
    color: #006080;
    z-index:9999;
    */
}

.tooltip-fodi .tooltiptext {
    visibility: hidden;
    position: absolute;
    width: 100%; /*120px;*/
    /*background-color: #555;*/    
    background-color:#FF5733;
    color: #fff;
    text-align: left;
    padding: 5px 10px;
    border-radius: 6px;
    z-index: 1;
    opacity: 0;
    transition: 2s;
    /*transition: opacity 0.5s;*/
}

/*
.tooltip-fodi:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}
*/


.tooltip-bottom {
  top: 110%;
  left: 0%;  
  margin-left: 0px;
}

.tooltip-bottom::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 7%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #FF5733 transparent;
}


.tooltip-fodiLog {
    position: relative;
}

.tooltip-fodiLog .tooltiptext {
    visibility: hidden;
    position: absolute;    
    width: 100%; /*120px;*/
    /*background-color: #555;*/    
    background-color:#FF5733;
    color: #fff;
    text-align: left;
    padding: 5px 10px;
    border-radius: 3px;
    z-index: 1;
    opacity: 0;
    transition: 2s;
    /*transition: opacity 0.5s;*/
}

.tooltip-fodiLog:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

.tooltip-bottom2 {
  top: 110%;
  left: 0%;  
  margin-left: 0px;
}

.tooltip-bottom2::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 2.3%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #FF5733 transparent;
}

/*
.tooltip-right {
  top: -5px;
  left: 125%;  
}

.tooltip-right::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent #555 transparent transparent;
}


.tooltip-bottom {
  top: 135%;
  left: 50%;  
  margin-left: -60px;
}

.tooltip-bottom::after {
    content: "";
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent #555 transparent;
}

.tooltip-top {
  bottom: 125%;
  left: 50%;  
  margin-left: -60px;
}

.tooltip-top::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: #555 transparent transparent transparent;
}

.tooltip-left {
  top: -5px;
  bottom:auto;
  right: 128%;  
}
.tooltip-left::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    margin-top: -5px;
    border-width: 5px;
    border-style: solid;
    border-color: transparent transparent transparent #555;
}
*/
/* Tooltip */


/*** Misc Fancy Styles ***/
.form-control-input
{
    display:block;
    width:100%;
    padding:.375rem .75rem;
    font-size:1rem;
    font-weight:400;
    line-height:1.5;
    color:#777;
    background-color:#fff;
    background-clip:padding-box;
    border:1px solid #252525;
    appearance:none;
    border-radius:0px;
    transition: 2s;
}

.nav-swap {
  background-image: linear-gradient(
    to right,
    #54b3d6,
    #54b3d6 50%,
    #000 50%
  );
  background-size: 200% 100%;
  background-position: -100%;
  display: inline-block;
  padding: 5px 0;
  position: relative;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease-in-out;
}

.nav-swap:before{
  content: '';
  background: #54b3d6;
  display: block;
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 3px;
  transition: all 0.3s ease-in-out;
}

.nav-swap:hover {
 background-position: 0;
}

.nav-swap:hover::before{
  width: 100%;
}

.li-indent
{
    margin-left:15px;
    color: #080808;
}

.subject-text-pub
{
    color: #D39A21;
    font-weight: bold;
}

.remark-text-pub
{
    color: Red;
    font-weight: bold;
}

.p-text-left
{    
    text-align: left;    
}

.alert-text-pub
{
    color: #FF5733;
    font-weight: bold;
}

.search-labels
{
    color: darkblue;
    font-weight: bold;
}

.img-small
{
    width: 30%;
    height: 30%;
    border: 0px;
}

.icon-lock
{
    cursor: pointer;
    color: #FF5733;
}

.icon-fa-eye
{
    margin-top: -38px; 
    float: right; 
    padding-right: 10px; 
    cursor: pointer;
}

.page-current
{
    background-color: #F4EFE3;
    border-radius: 16px;
    padding: 5px;
}

.page-navi-1
{
    background-color: #F9E2AB;
    border-radius: 14px;
    padding: 5px;
    cursor: pointer;
}


.page-navi-2
{
    background-color: #FBCE64;
    border-radius: 12px;
    padding: 5px;
    cursor: pointer;
}
.page-navi-1:hover, .page-navi-2:hover
{
    background-color: #900C3F;
    color: #FFFFFF;
    border-radius: 14px;
    padding: 5px;
    cursor: pointer;
}

.label-anchor
{
    cursor: pointer;
    color: Red; 
    background-color: #D5D4D4;
    position: relative;
    display: inline-block;
    border-radius: 5px;
    font-size: 10pt;
    padding: 5px;
    overflow:hidden;
}

.label-anchor::before,
.label-anchor::after {
 content: '';
  position: absolute;
  width: 100%;
  left: 0;
}
.label-anchor::before {
  background-color: Red;
  height: 2px;
  bottom: 0;
  transform-origin: 100% 50%;
  transform: scaleX(0);
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}
.label-anchor::after {
  content: attr(data-replace);
  height: 100%;
  top: 0;
  transform-origin: 100% 50%;
  transform: translate3d(200%, 0, 0);
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
  color: Red;
}

.label-anchor:hover::before {
  transform-origin: 0% 50%;
  transform: scaleX(1);
}
.label-anchor:hover::after {
  transform: translate3d(0, 0, 0);
}

.label-anchor span {
  display: inline-block;
  transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

.label-anchor:hover span {
  transform: translate3d(-200%, 0, 0);
}
/*** Misc Fancy Styles ***/

/*** Date Picker***/
#datepicker{width:100%; /*margin: 0 20px 20px 20px;*/}
#datepicker > span:hover{cursor: pointer;}
/*** Date Picker ***/

/*** About Fodi ***/
.title-au
{
    font-weight: bold;
    /*font-family: "Teko","Open Sans",sans-serif;*/
    font-size: 12pt;
    color: #080808;
    text-decoration: underline;    
}
/*** About Fodi ***/


/*** Result + Prediction Background & Font Colors ***/
.bg-fodi88
{
    background: #00CCCC;    
}

.bg-hunt
{
    background: #003366;    
}

.ft-hunt
{
    color: #003366;    
}

.bg-monthly
{
    background: #993300;    
}

.ft-monthly
{
    color: #993300;    
}

.bg-weekly
{
    background: #FFFF00;    
}

.ft-weekly
{
    color: #FFFF00;    
}

.bg-daily
{
    background: #9933CC;    
}

.ft-daily
{
    color: #9933CC;    
}

.bg-comingsoon1
{
    background: #B4DF4D;    
}

.ft-comingsoon1
{
    color: #B4DF4D;    
}

.bg-comingsoon2
{
    background: #33CC66;    
}

.ft-comingsoon2
{
    color: #33CC66;    
}

.bg-comingsoon3
{
    background: #E17100;    
}

.ft-comingsoon3
{
    color: #E17100;    
}

.div-space-h
{
    height: 50px;    
}
/*** Result + Prediction Background & Font Colors ***/


/*** Tables - Prediction ***/
.table-prediction
{
    border: solid 1px #3f4240;
    background-color: #006;
    width: 100%;
    table-layout:fixed;
    border-collapse:collapse;
}

.prediction
{
    font-weight: bold;
    /*font-family: "Teko","Open Sans",sans-serif;*/
    font-size: 16pt;
    text-align: left;
    border: solid 1px #3f4240;
}

.prediction.th
{    
    font-family: "Teko","Open Sans",sans-serif;    
}

.prediction.td
{   
    background-color: #0CC; 
    font-family: "Open Sans",sans-serif; 
    font-size: 12pt;
    padding-left: 5px;
    padding-right: 5px; 
}

.prediction.th.col-date 
{
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle; 
}

.prediction.th.col-title 
{
    color: #0CC;
    text-align: center;
    vertical-align: middle; 
}

.prediction.td.site
{    
    font-family: "Open Sans",sans-serif; 
    color: #006;
    padding-left: 5px;
    padding-right: 5px; 
}

.prediction.td
{    
    font-family: "Open Sans",sans-serif; 
    color: #FFFFFF;
    text-align: center;
    vertical-align: middle; 
}
/*** Tables - Prediction ***/


/*** Tables - Results ***/
/*th {
  background-color: #04AA6D;
  color: white;
}*/

.table-result
{
    border: solid 1px #3f4240;
    width: 100%;
}

.result
{
    font-weight: bold;
    /*font-family: "Teko","Open Sans",sans-serif;*/
    font-size: 16pt;
    text-align: left;
    border: solid 1px #3f4240;
}

.result.th
{    
    font-family: "Teko","Open Sans",sans-serif;    
}

.result.td
{    
    font-family: "Open Sans",sans-serif; 
    padding-left: 5px;
    padding-right: 5px; 
}

.result.th.col-date 
{
    color: #808080;
    text-align: center;
    vertical-align: middle; 
}

.result.th.col-first 
{
    background: #FF0000;
    color: #FFFFFF;    
    vertical-align: text-top;  
}

.result.th.col-second 
{
    background: #0066CC;
    color: #FFFFFF;    
    vertical-align: text-top;
}

.result.th.col-third 
{
    background: #009933;
    color: #FFFFFF;    
    vertical-align: text-top; 
}

.result.th.col-special 
{
    background: #DEA84B;
    color: #FFFFFF;    
    text-align: center; 
    vertical-align: middle; 
}

.result.th.col-consolation  
{
    background: #999999;
    color: #FFFFFF;    
    text-align: center; 
    vertical-align: middle; 
}

.result.td
{    
    color: #000000;    
    vertical-align: text-top;  
}

.result.td .span-first
{    
    /*background: #FFFFFF;  */
    font-size: 18pt;
}

.result-tag
{
    color: #FFFFFF;     
    position: relative;
    display: inline-block;
    border-radius: 3px;
    padding: 8px;
    width: 150%;
    max-width: 200px;
}

.tag-first
{
    background-color: #C70039;
}

.tag-second
{
    background-color: #080EF4;
}

.tag-third
{
    background-color: #06A72B;
}

.tag-special
{
    background-color: #F5A038;
}

.tag-consolation
{
    background-color: #939894;
}
/*** Tables - Results ***/

/*** Tables - Term Of Service ***/
.table-tos
{
    border: solid 1px #3f4240;
    text-align: center; 
    width: 100%;
}

.th-grad-light-brown 
{
  color: #000;  
  background: linear-gradient(rgba(255, 136, 102, 0.67) -53.1%, rgba(255, 221, 136, 0.28) 49%);
}

.tos.td-hr
{
    border-bottom:1px solid #CCCCCC;
}

.tos.td-subject
{    
    color: #000000;    
    text-align: center; 
    vertical-align: text-top;  
}

.tos.td
{    
    color: red;    
    text-align: center; 
    vertical-align: text-top;  
}

.tos.td-2
{    
    color: #304FFE;    
    text-align: center; 
    vertical-align: text-top;  
}
/*** Tables - Term Of Service ***/


/*** Footer ***/
.footer .btn.btn-link {
    display: block;
    margin-bottom: 5px;
    padding: 0;
    text-align: left;
    color: #777777;
    font-weight: normal;
    text-transform: capitalize;
    transition: .3s;
}

.footer .btn.btn-link::before {
    position: relative;
    content: "\f105";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--primary);
    margin-right: 10px;
}

.footer .btn.btn-link:hover {
    color: var(--primary);
    letter-spacing: 1px;
    box-shadow: none;
}

.footer .form-control {
    border-color: #777777;
}

.footer .copyright {
    padding: 25px 0;
    font-size: 15px;
    border-top: 1px solid rgba(256, 256, 256, .1);
}

.footer .copyright a {
    color: var(--light);
}

.footer .copyright a:hover {
    color: var(--primary);
}