﻿/* site.css */
html {
    position: relative;
    min-height: 100%;
    /*background: url(../../images/kentron-bg-home.jpg) no-repeat center center fixed;*/
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
}

body {
    background-color: transparent;
    margin: 0px;
    font-family: 'Roboto', 'Century Gothic', sans-serif !important;
}

body, html {
    height: 100%;
}

footer {
    display: none;
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
    width: 100%;
}

label {
    font-weight: bold;
}

.main {
}

h1 {
    margin-top: 0px !important;
}

.title-truncate {
    display: inline-block;
    max-width: 250px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.truncate {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.frame-structure {
    display: table;
    position: absolute;
    height: 100%;
    width: 100%;
}

.frame-structure-content {
    display: table-cell;
    vertical-align: middle;
}

.content-container {
    padding-top: 0px;
    min-width: 300px;
    max-width: 800px;
    margin: auto;
}

.content-container-form {
    background-color: rgba(252,252,252, 0.95);
    border: 1px solid #cccccc;
    border-radius: 5px;
    padding: 15px;
    min-width: 300px;
    max-width: 800px;
    margin-left: 15px;
    margin-right: 15px;
}

/* Landing Welcome Page */
.landing-page-logo {
    width: 100%;
    margin: auto;
    padding: 0px 15px;
}

.landing-page-container {
    padding-top: 0px;
    min-width: 200px;
    max-width: 800px;
    margin: auto;
}

.landing-page-container-form {
    background-color: rgba(252,252,252, 0.95);
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 15px;
    min-width: 200px;
    max-width: 800px;
    min-height: 200px;
    margin: 15px;
    -webkit-box-shadow: 0px 3px 12px -8px rgba(0,0,0,0.6) !important;
    -moz-box-shadow: 0px 3px 12px -8px rgba(0,0,0,0.6) !important;
    box-shadow: 0px 3px 12px -8px rgba(0,0,0,0.6) !important;
}

.landing-page-container-logo {
    margin-top: 0px;
    max-height: 200px;
    width: 100%;
    object-fit: contain;
    border: none;
}

.landing-page-container-footer {
    color: #aaaaaa;
    font-size: 13px;
    padding: 5px;
    min-width: 200px;
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.landing-page-container-message {
    font-size: 12px;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 200px;
    max-width: 800px;
    margin: auto;
}

.guest-register-or-option-text {
    color: #0d6cb6;
    font-size: 28px;
    border: 1px solid #0d6cb6;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* Login module */
.login-logo {
    max-width: 200px;
}

.login-container {
    padding-top: 0px;
    min-width: 200px;
    max-width: 400px;
    margin: auto;
}

.login-container-form {
    background-color: rgba(252,252,252, 0.95);
    border: 1px solid #cccccc;
    border-radius: 10px;
    padding: 15px;
    min-width: 200px;
    max-width: 400px;
    margin: 15px;
    -webkit-box-shadow: 0px 3px 12px -8px rgba(0,0,0,0.6) !important;
    -moz-box-shadow: 0px 3px 12px -8px rgba(0,0,0,0.6) !important;
    box-shadow: 0px 3px 12px -8px rgba(0,0,0,0.6) !important;
}

.login-container-logo {
    max-height: 100px;
    margin-top: 5px;
    max-width: 100%;
    border: none;
}

.login-container-footer {
    color: #aaaaaa;
    font-size: 13px;
    padding: 5px;
    min-width: 200px;
    max-width: 400px;
    margin: auto;
    text-align: center;
}

.login-container-message {
    font-size: 12px;
    padding-left: 15px;
    padding-right: 15px;
    min-width: 200px;
    max-width: 400px;
    margin: auto;
}

.form-control-validation {
    color: red;
    font-size:85%;
    margin-top:3px;
}

.header-sign-up {
    margin-top:5px;
    margin-bottom:15px;
}

.btn-full-width {
    width: 100%;
}

.svg-image-form-control {
    width: 23px;
    height: 23px;
}

/* Bootstrap 4 hack to work with uibModal */
.modal.fade.in {
    opacity: 1;
}

.modal.fade .modal-dialog {
    transform: translate(0, 0) !important;
}

.modal-backdrop.fade {
    opacity: 0.5 !important;
}

/* 
    switch slider 
*/
/* 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[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

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: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/*
    Sign Up Step
*/
.sign-up-step-label {
    font-size: 14px;
}

.sign-up-step-label-active {
    color: #000000;
}

.sign-up-step-label-inactive {
    color: #aaaaaa;
}

.sign-up-progress {
    padding-top: 5px;
    padding-bottom: 10px;
    text-align: center;
    vertical-align: middle;
}

.sign-up-progress-border-success {
    border-bottom: 5px solid #3a921c;
}

.sign-up-progress-border-default {
    border-bottom: 5px solid #ccc;
}


/*
    Cookie Consent
*/
.cookie-consent {
    margin-top:150px;
    background: #252525;
    bottom: 0;
    color: #fff;
    font-size: 13px;
    padding: 10px 0px;
    position: fixed;
    text-align: center;
    width: 100%;
}