﻿/*.custom-file-input::-webkit-file-upload-button {
  visibility: hidden;
}
.custom-file-input::before {
  content: 'Select some files';
  display: inline-block;
  background: -webkit-linear-gradient(top, #f9f9f9, #e3e3e3);
  border: 1px solid #999;
  border-radius: 3px;
  padding: 5px 8px;
  outline: none;
  white-space: nowrap;
  -webkit-user-select: none;
  cursor: pointer;
  text-shadow: 1px 1px #fff;
  font-weight: 700;
  font-size: 10pt;
}
.custom-file-input:hover::before {
  border-color: black;
}
.custom-file-input:active::before {
  background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}*/

/*.file_input_textbox {
    height:25px; 
    width:200px; 
    float:left; 
    font-size: 10px; 
}

.file_input_div {
    position: relative; 
    width:80px; 
    height:26px; 
    overflow: hidden; 
    font-size: 10px;
}

.file_input_button {
    width: 80px; 
    position:absolute; 
    top:0px; 
    border:1px solid #F0F0EE;
    padding:2px 8px 2px 8px; 
    font-size: 12px;
    font-weight:bold;
    height:25px; 
    margin:0px; 
    margin-right:5px; 
    font-size: 10px;
    background-color: orange;
    -moz-border-radius: 6px;
    -webkit-border-radius: 6px;
}

.file_input_button_hover{
    width:80px;
    position:absolute;
    top:0px; 
    border:1px solid #0A246A; 
    background-color:#B2BBD0;
    padding:2px 8px 2px 8px; 
    height:25px; 
    margin:0px; 
    font-weight:bold; 
    margin-right:5px; 
    font-size: 10px;
}

.file_input_hidden {
    font-size:45px;
    position:absolute;
    right:0px;top:0px;
    cursor:pointer; 
    opacity:0; 
    filter:alpha(opacity=0); -ms-filter:"alpha(opacity=0)"; -khtml-opacity:0; -moz-opacity:0; 
    font-size: 10px;
}*/

.business-header {
    height: 25%;
    background: url(/images/mfsalogo.png) center no-repeat;
    background-size: contain;
}

div.clickable { /* Containing div must have a position value */
    position: relative;
    padding: 12px;
    display: inline-block;
    vertical-align: top;
    background: #e4e4e4;
    cursor: pointer;
    margin-bottom: 5px;
}

    div.clickable:hover {
        background: lightskyblue;
    }

    div.clickable a {
        position: absolute;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        text-decoration: none; /* Makes sure the link   doesn't get underlined */
        z-index: 10; /* raises anchor tag above everything else in div */
        background-color: white; /*workaround to make clickable in IE */
        opacity: 0; /*workaround to make clickable in IE */
        filter: alpha(opacity=1); /*workaround to make clickable in IE */
    }

   .hideSections{
        display:none;
    }


.bs-callout {
  margin: 20px 0;
  padding: 15px 30px 15px 15px;
  border-left: 5px solid #eee;
}
.bs-callout h4 {
  margin-top: 0;
}
.bs-callout p:last-child {
  margin-bottom: 0;
}
.bs-callout code,
.bs-callout .highlight {
  background-color: #fff;
}

/* Themes for different contexts */
.bs-callout-danger {
  background-color: #fcf2f2;
  border-color: #dFb5b4;
}
.bs-callout-warning {
  background-color: #fefbed;
  border-color: #f1e7bc;
}
.bs-callout-info {
  background-color: #f0f7fd;
  border-color: #d0e3f0;
}


.toast-type-error {
    padding-right: 25px !important;
}

fieldset.with-border {
    padding: 15px;
    border: 1px;
    border-style: solid;
    border-color: #d0e3f0;
}

legend.info {
    padding: 15px;
    border-bottom: none;
    margin-bottom: 0px;
    font-size: 18px;
}

.text-dark{
    color: #333;
}

.title {
    margin-top: 10px;
    display: block;
}
.underline {
    text-decoration:underline;
}
.spaced {
    padding: 12px 0;
}

.example-section{
    padding: 4px 0px;
}
}

/* Skeleton Loader */
.loading-skeleton {
    pointer-events: none;
    animation: loading-skeleton 1s infinite alternate;
}

    .loading-skeleton img {
        filter: grayscale(100) contrast(0%) brightness(1.8);
    }

.loading-skeleton {
    color: transparent;
    appearance: none;
    -webkit-appearance: none;
    background-color: #eee;
    border-color: #eee;
}

    .loading-skeleton::placeholder {
        color: transparent;
    }

@keyframes loading-skeleton {
    from {
        opacity: .4;
    }

    to {
        opacity: 1;
    }
}

.spin {
    transform-origin: 50% 50%;
    animation: rotate-spin 1s infinite;
}

@keyframes rotate-spin {
    0% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(180deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
