html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
  position: relative;
  min-height: 100%;
}

body {
  margin-bottom: 60px;
}

.visit-link {
    border-radius: 4% !important;
    border-top-left-radius: 4% !important;
    border-top-right-radius: 4% !important;
    border-bottom-left-radius: 4% !important;
    border-bottom-right-radius: 4% !important;
    left: 40% !important;
    top: 50% !important;
    color: white !important;
    width: 100px;
    background: #47bfe7 !important;
    line-height: 30px !important;
    height: 40px;
    font-weight:bold;
}

#msgModal{
    display:none;
}

#overlay {
    position: fixed; /* Sit on top of the page content */
    display: none; /* Hidden by default */
    width: 100%; /* Full width (cover the whole page) */
    height: 100%; /* Full height (cover the whole page) */
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,0.5); /* Black background with opacity */
    z-index: 2; /* Specify a stack order in case you're using a different order for other elements */
    cursor: pointer; /* Add a pointer on hover */
}

/*************************Sliding Carousel CSS*******************/
/*body {
    align-items: center;
    background: #E3E3E3;
    display: flex;
    height: 100vh;
    justify-content: center;
}*/

@mixin white-gradient {
    background: linear-gradient(to right, rgba(255,255,255,1) 0%,rgba(255,255,255,0) 100%);
}

/*$animationSpeed: 40s;*/

/*// Animation*/
@keyframes scroll {
    0%

{
    transform: translateX(0);
}

100% {
    transform: translateX(calc(-250px * 7))
}

}

/* Styling*/
.slider {
    /*background: white;
    box-shadow: 0 10px 20px -5px rgba(0, 0, 0, .125);*/
    height: 100px;
    margin: auto;
    overflow: hidden;
    position: relative;
    /*width: 960px;*/
    &::before, &::after

{
    @include white-gradient;
    content: "";
    height: 100px;
    position: absolute;
    width: 200px;
    z-index: 2;
}

&::after {
    right: 0;
    top: 0;
    transform: rotateZ(180deg);
}

&::before {
    left: 0;
    top: 0;
}

.slide-track {
    animation: scroll 40s linear infinite;
    display: flex;
    width: calc(250px * 11);
}

.slide {
    height: 100px;
    width: 250px;
    padding-right:20px;
}
}
/******************************END : Sliding carousel css**********************/
