﻿/*  Google Fonts  */
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro:200,300,400,500,600,700');

body {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 15px;
    line-height: 1.3;
    font-weight: 400;
    background-color: rgb(238, 238, 238);
    color: rgb(77, 88, 88);
    box-sizing: border-box;
}

/********************************************************************** PANELS */

.panel-default {
    padding: 20px;
    border: none;
    box-shadow: 1px 1px 2px rgb(0 0 0 / 7.5%);
    -webkit-box-shadow: 1px 1px 2px rgb(0 0 0 / 7.5%);
    border-radius: 5px;
}

.panel .border {
    border: 1px solid #ddd;
}

a .border:hover {
    border: 1px solid rgba(9, 132, 227, 1.0);
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

/********************************************************************** TYPOGRAPHY */

.h1 {
    font-size: 60px;
    font-weight: 100;
    margin: 0;
    line-height: 0.6;
}

h3,
.h3 {
    font-size: 18px;
    margin: 0;
    font-weight: 400;
}

h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 0;
}

h4 span {
    font-size: 14px;
    font-weight: 400;
}

h5 {
    font-size: 13px;
    font-weight: 400;
    font-style: italic;
    margin: 0;
}

ol,
ul {
    margin: 0;
}

.font-bold {
    font-weight: 700;
}

/********************************************************************** MEASURES */

.h-100 {
    height: 100%;
}

.w-100 {
    width: 100% !important;
}

.w-66 {
    width: 66%;
}

.w-50 {
    width: 50%;
}

.mar-bot-30,
.mb-30 {
    margin-bottom: 30px;
}

.mb-20,
.mb-20 {
    margin-bottom: 20px;
}

.mb-15 {
    margin-bottom: 15px;
}

.mr-15 {
    margin-right: 15px;
}

.mar-bot-10 {
    margin-bottom: 10px;
}

.mar-bot-0 {
    margin-bottom: 0;
}

.mar-r-5 {
    margin-right: 5px;
}

.pad-r-10 {
    padding-right: 10px;
}

.pad-l-10 {
    padding-left: 10px;
}

.pad-top-50 {
    padding-top: 50px;
}

.pad-top-30 {
    padding-top: 30px;
}

.pad-top-10 {
    padding-top: 10px;
}

.pad-bot-0 {
    padding-bottom: 0px;
}

.va-middle {
    vertical-align: middle;
}
.my-15{
    margin-top: 15px;
    margin-bottom: 15px;
}
.ml-10{
    margin-left: 10px;
}

/********************************************************************** COLOR */

.color-green {
    color: rgba(26, 188, 156, 1.0);
}

.color-gray-light {
    color: rgba(113, 121, 121, 1.0)
}

.color-white {
    color: rgba(253, 253, 253, 1.0);
}


/********************************************************************** NOTIFICATION */

.notification {
    padding: 10px 12px 11px 0px;
    margin-bottom: 15px;
    z-index: 999999;
    background-color: rgb(245, 69, 69);
    color: rgb(255, 255, 255);
    background-image: url(../assets/exclamation-triangle-light.svg);
    border-radius: 5px;
    border: 0;
    font-size: 12px;
    background-repeat: no-repeat;
    background-size: 18px;
    background-position: 12px center;
    transition: opacity 0.4s ease-in-out;
    box-shadow: none;
    position: absolute;
    left: 30px;
    bottom: 30px;
}

.notification ul {
    list-style-type: none;
    text-align: left;
}

#close-icon {
    cursor: pointer;
    z-index: 1000000;
    position: relative;
    padding: 8px;
    pointer-events: auto;
}


/********************************************************************** FORMS */

.form-control {
    height: 38px;
    min-width: 100%;
    border-radius: 5px;
    border-color: rgb(148, 155, 155);
    box-shadow: inset 1px 1px 3px rgb(0 0 0 / 10%);
    -webkit-box-shadow: inset 1px 1px 3px rgb(0 0 0 / 10%);
}

.form-control:hover {
    border-color: rgba(52, 73, 94, 1.0);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.form-control:focus {
    border-color: rgba(9, 132, 227, 1.0);
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%);
}

.btn,
.btn a,
button {
    text-transform: uppercase;
    background-color: transparent;
    border-width: 1px;
    border-style: solid;
    border-color: transparent;
    border-radius: 10px;
    letter-spacing: 0;
    font-weight: 600;
    padding-top: 10px;
    padding-bottom: 10px;
    margin-top: 10px;
    text-decoration: none;
    color: inherit;
}

.btn:focus,
.btn a:focus,
button:focus {
    outline: none;
}

.btn.active,
.btn:active {
    background-image: none;
    outline: 0;
    -webkit-box-shadow: none;
    box-shadow: none;
}

.btn.active.focus,
.btn.active:focus,
.btn.focus,
.btn:active.focus,
.btn:active:focus,
.btn:focus {
    outline: none;
    outline-offset: unset
}

.btn-lg a {
    font-size: 14px;
    padding: 10px 20px;
}

.btn-signature {
    color: rgb(253, 253, 253);
    background-color: rgb(42, 152, 200);
    height: 52px;
    padding: 0 20px;
    border-radius: 7.5px;
    border: none;
    margin: 0;
}

.btn-signature:hover,
.btn-signature:active {
    background-color: rgb(26, 117, 157);
    color: rgb(253, 253, 253);
}

.btn-neutral-spacing{
    letter-spacing: 0;
}

::placeholder {
    color: rgb(148, 155, 155);
    font-style: italic;
}

/********************************************************************** EFFECTS */

.ease-in-out,
.btn,
a,
a .border {
    -webkit-transition: all 3s ease-in-out;
    -moz-transition: all 3s ease-in-out;
    -o-transition: all 3s ease-in-out;
    transition: all 0.5s ease-in-out;
}

/********************************************************************** LOGIN CUSTOM PIECES */

.login {
    width: 350px;
    background-color: rgba(255, 255, 255, 0.9);
    padding: 50px;
    box-shadow: 1px 1px 4px rgb(0 0 0 / 7.5%);
    -webkit-box-shadow: 1px 1px 4px rgb(0 0 0 / 7.5%);
}

.login .logo {
    width: 150px;
    margin-bottom: 30px;
    width: 50%;
}

.login .form-control.capslock {
    background-image: url(/assets/capslock_dark_20x20.9bea15ce0a0db82b65470fb387f0ceeb.png) !important;
    background-position: 97% center !important;
    background-repeat: no-repeat !important;
    background-size: 16px !important;
    transition: none !important;
}

.login ::-webkit-input-placeholder {
    color: rgb(148, 155, 155);
}

.login ::-moz-placeholder {
    color: rgb(148, 155, 155);
}

.login :-ms-input-placeholder {
    color: rgb(148, 155, 155);
}

.login :-o-input-placeholder {
    color: rgb(148, 155, 155);
}

.login-message {
    position: absolute;
    background-color: rgba(191, 8, 33, 0.9);
    right: 15px;
    bottom: 15%;
    padding: 25px 25px 25px 20px;
    border-radius: 10px 0 0 10px;
    box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.55);
    -webkit-box-shadow: -1px 1px 4px rgba(0, 0, 0, 0.55);
}

/********************************************************************** BACKGROUNDS */

.back-win-1 {
    height: 100%;
    background-image: url("../assets/login/winter/1.jpg");
    background-size: cover;
}

.back-win-2 {
    height: 100%;
    background-image: url("../assets/login/winter/2.jpg");
    background-size: cover;
}

.back-win-3 {
    height: 100%;
    background-image: url("../assets/login/winter/3.jpg");
    background-size: cover;
}

.back-win-4 {
    height: 100%;
    background-image: url("../assets/login/winter/4.jpg");
    background-size: cover;
}

.back-win-5 {
    height: 100%;
    background-image: url("../assets/login/winter/5.jpg");
    background-size: cover;
}

.back-win-6 {
    height: 100%;
    background-image: url("../assets/login/winter/6.jpg");
    background-size: cover;
}

.back-sum-1 {
    height: 100%;
    background-image: url("../assets/login/summer/1.jpeg");
    background-size: cover;
}

.back-sum-2 {
    height: 100%;
    background-image: url("../assets/login/summer/2.jpeg");
    background-size: cover;
}

.back-sum-3 {
    height: 100%;
    background-image: url("../assets/login/summer/3.jpeg");
    background-size: cover;
}

.back-sum-4 {
    height: 100%;
    background-image: url("../assets/login/summer/4.jpeg");
    background-size: cover;
}

.back-spr-1 {
    height: 100%;
    background-image: url("../assets/login/spring/1.jpg");
    background-size: cover;
}

.back-spr-2 {
    height: 100%;
    background-image: url("../assets/login/spring/2.jpg");
    background-size: cover;
}

.back-spr-3 {
    height: 100%;
    background-image: url("../assets/login/spring/3.jpg");
    background-size: cover;
}

.back-spr-4 {
    height: 100%;
    background-image: url("../assets/login/spring/4.jpg");
    background-size: cover;
}

.back-fal-1 {
    height: 100%;
    background-image: url("../assets/login/fall/1.jpg");
    background-size: cover;
}

.back-fal-2 {
    height: 100%;
    background-image: url("../assets/login/fall/2.jpg");
    background-size: cover;
}

.back-fal-3 {
    height: 100%;
    background-image: url("../assets/login/fall/3.jpg");
    background-size: cover;
}

.back-fal-4 {
    height: 100%;
    background-image: url("../assets/login/fall/4.jpg");
    background-size: cover;
}

/******************** MFA *********************/

.mfa-shell {
    background-color: rgb(255, 235, 168);
    background: url(../assets/mfa-boxes.png);
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    border-radius: 10px;
    position: relative;
    line-height: 1.7;
}

.mfa-in {
    border: none;
    width: 120%;
    background: transparent;
    font-size: 4ch;
    letter-spacing: 1.9ch;
    padding-left: 10px;
}

.mfa-in.register {
    letter-spacing: 1.59ch;
    padding-left: 8px;
}

.mfa-in:focus {
    outline: none;
}

.mfa {
    background-color: rgb(176, 223, 235);
    text-align: center;
    border-radius: 10px;
}

.mfa-qr {
    padding: 30px;
}

.mfa-qr img {
    width: 100%;
}

.mfa-code {
    padding-bottom: 20px;
    padding-top: 20px;
    font-weight: 700;
}

.separator {
    display: flex;
    align-items: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 20px;
    font-size: 12px;
}

.separator::before,
.separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid rgba(52, 73, 94, 1.0);
    ;
}

.separator::before {
    margin-right: .25em;
}

.separator::after {
    margin-left: .25em;
}

a.back,
a.special {
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
}

a.link,
.link a {
    position: relative;
    color: rgb(42, 152, 200);
    text-decoration: none !important;
}

a.link:hover,
.link a:hover {
    color: rgb(42, 152, 200);
}

a.link::before,
.link a::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 1px;
    bottom: 0;
    left: 0;
    background-color: rgb(42, 152, 200);
    visibility: hidden;
    transform: scaleX(0);
    transition: all 0.3s ease-in-out 0s;
}

a.link:hover::before,
.link a:hover::before {
    visibility: visible;
    transform: scaleX(1);
}

a.no-link::before {
    content: unset;
}

a.no-link:hover,
a.no-link:focus {
    color: rgba(9, 132, 227, 1.0);
}

.fa-1x75 {
    font-size: 1.75em;
}

/* Register for MFA additional classes */
.mfa-hr {
    border-top: 1px solid rgba(52, 73, 94, 1.0);
}

/* The switch - the box around the slider */
.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
  }
  
  /* 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: 20px;
    width: 20px;
    left: 2px;
    bottom: 2px;
    background-color: white;
    -webkit-transition: .4s;
    transition: .4s;
  }
  
  input:checked + .slider {
    background-color: #3f97d7;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #3f97d7;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }

  .checkbox-text {
    margin-left: 5px;
    margin-bottom: 0;
    vertical-align: sub;
    font-weight: 400;
  }

  .required-field {
    color: red;
  }

/* Flex */

.d-flex {
    display: flex !important;
}

.align-items-center {
    align-items: center !important;
}

.justify-content-center {
    justify-content: center !important;
}

.justify-content-start {
    justify-content: flex-start !important;
}

.justify-content-end {
    justify-content: flex-end !important;
}

.justify-content-between {
    justify-content: space-between !important;
}

.justify-content-around {
    justify-content: space-around !important;
}

.me-auto {
    margin-right: auto !important;
}

.ms-auto {
    margin-left: auto !important;
}

.col {
    flex: 1 0 0%;
}

.col-auto {
    flex: 0 0 auto;
    width: auto;
}

.vh-100 {
    height: 100vh;
}

.flex-align-items-center {
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

/********************************************************************** SOC 2 CERTIFICATION */

.mt-30 {
    margin-top: 30px !important;
}

.soc2-certification {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    margin-bottom: 10px;
}

.soc2-icon {
    color: rgb(148, 155, 155);
    font-size: 18px;
}

.soc2-text {
    color: rgb(77, 88, 88);
    font-weight: 500;
}

.soc2-link {
    color: rgb(42, 152, 200);
    text-decoration: none;
    font-weight: 400;
}

.soc2-link:hover {
    color: rgb(9, 117, 163);
    text-decoration: underline;
}
