﻿ body {
}

.ssp {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight:600;
    
}
.sspmedium {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
}
.sspthin {
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 300;
}
.nc {
    font-family: 'News Cycle', sans-serif;
    font-weight: 400;
}
.ncbold {
    font-family: 'News Cycle', sans-serif;
    font-weight: 700;
}


.blue-2 {
    color: #1c6cba;
    text-decoration: none;
}

.red-1 {
    color: #ca243a;
    text-decoration:none;
}

.topMargin {
    margin-left:30px;
    margin-right:30px;
}

.roboto {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
}

.robotothin {
    font-family: 'Roboto', sans-serif;
    font-weight: 300;
}

.otc {
    position: relative;
    width: 320px;
    margin: 0 auto;
}

.otc fieldset {
    border: 0;
    padding: 0;
    margin: 0;
}

.otc fieldset div {
   //display: flex;
   // align-items: center;
   //
    text-align: center;
}

.otc legend {
    margin: 0 auto 1em;
    color: #5555FF;
}

.otc-field {
    width: .82em;
    line-height: 1;
    margin: .1em;
    padding: 8px 0 4px;
    font-size: 1.5em;
    text-align: center;
    appearance: textfield;
    -webkit-appearance: textfield;
    border: 2px solid #84a8ce;
    color: #333333;
    border-radius: 4px;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
/*
// 2 group of 3 items 
input[type="number"]:nth-child(n+4) {
    order: 2;
}
    */

.otc div::before {
    content: '';
    height: 2px;
    width: 24px;
    margin: 0 .25em;
    order: 1;
    background: #BBBBFF;
}

.otc label {
    border: 0 !important;
    clip: rect(1px, 1px, 1px, 1px) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    margin: -1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}


/* The Modal (background) */
.r-modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.r-modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.r-close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.r-close:hover,
.r-close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.abutton {
    display:block;
    background: #337ab7;
    padding: 10px;
    text-align:center;
    border-radius: 5px;
    transition: 1s;
    text-decoration: none;
    color: white;
    width: 100%;
}

.abutton:hover, .abutton:visited {
    background: #337AB7;
    color: white;
    text-decoration: none;
}

.ghostbutton {
    display: block;
    background: white;
    padding: 10px;
    text-align: center;
    border-radius: 4px;
    border: 1px solid #337AB7;
    transition: 1s;
    text-decoration: none;
    color: #337AB7;
    width: 100%;
}

.ghostbutton:hover, .ghostbutton:visited {
    background: #286090;
    color: white;
    text-decoration: none;
}

.ghostbuttonready {
    background: #337AB7;
    color: white;
}

.loader {
    animation: spin 1s infinite linear;
    border: solid 2vmin transparent;
    border-radius: 50%;
    border-right-color: #286090;
    border-top-color: #286090;
    box-sizing: border-box;
    height: 20vmin;
    left: calc(50% - 10vmin);
    position: fixed;
    top: calc(25% - 10vmin);
    width: 20vmin;
    z-index: 100;
    display: block;
}

@keyframes spin {
    100% {
        transform: rotate(360deg);
    }
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

/* The slider */
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked + .slider {
    background-color: #2196F3;
}

input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 20px;
}

.slider.round:before {
    border-radius: 50%;
}

.btn-outline-primary:hover {
    background-color: #286090; //#337ab7;
    color: white;
}






