@import url('../../stlye.css');
html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner>main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner>* {
  opacity: 0;
}

/* Spinner */
body.show-spinner::after {
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}




/*customization*/
.navbar {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#103d78+0,1a7965+100 */
    background: #103d78; /* Old browsers */
    background: -moz-linear-gradient(45deg, #103d78 0%, #1a7965 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #103d78 0%,#1a7965 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #103d78 0%,#1a7965 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#103d78', endColorstr='#1a7965',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.logo {
    background: url('../img/ptc-logo-white.png') no-repeat !important;
    width: 81px;
    height: 39px;
}

.navbar .menu-button .main {
    fill: #fff;
}

#app-container.menu-sub-hidden .menu-button .sub {
    fill: #fff;
}

.menu .main-menu ul li a {
    text-align: center;
}

.navbar .user .name {
    color: #fff;
}

.navbar .user .user-holder {
    font-size: 28px;
    color: #fff;
    margin-left: 4px;
}

.navbar .header-icon {
    color: #fff;
}

.fixed-background {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#103d78+0,1a7965+100 */
    background: #103d78; /* Old browsers */
    background: -moz-linear-gradient(45deg, #103d78 0%, #1a7965 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(45deg, #103d78 0%,#1a7965 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(45deg, #103d78 0%,#1a7965 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#103d78', endColorstr='#1a7965',GradientType=1 ); /* IE6-9 fallback on horizontal gradient */
}

.auth-card .image-side {
    background: url("../img/ptc-login-illustration.png") no-repeat center center;
    background-size: contain;
    padding: 0px;
}

.auth-card .form-side {
    background: #f5f5f5;
}

    .auth-card .form-side .title {
        color: #114177;
        text-transform: uppercase;
    }

    .auth-card .form-side .sub-title {
        color: #333333;
    }

.custom-control-input:disabled[type=checkbox] ~ .custom-control-label {
    opacity: 0.5;
}