/*
    DEMO STYLE
*/
body {
    font-family: "proxima-nova", sans-serif;
    font-size: 15px;
    font-weight: 400;
    letter-spacing: 0px;

}

body, html, #wrapper, #middle {
    height: 100%;
}

body.normal {
    background: #F5F5F5;
}

body.light {
    background: white;
}

body.dark {
    background-color: #00243C;
}

.top-bar {
    height: 70px;
    box-shadow: 0 1px 0 0 rgba(209,209,209,0.5);
}

nav.navbar {
    padding: 0 0px 0 0;
    height: 70px;
    box-shadow: 0 1px 0 0 rgba(209,209,209,0.5);
}

.branding-container {
    background: #00243C;
    height: 70px;
    display: flex;
    align-items: center;
    color: #C5C5C5;
}

#menu-toggle {
    cursor: pointer;
}

nav.navbar .branding-container a {
    color: white;
    display: block;
    margin-left: 20px;
}

nav.navbar .branding-container a:hover {
    color: white;
}

.sidebar-wrapper {
    height: 100%;
    background-color: #00243C;
    padding: 0;
    position: relative;
    -webkit-transition: none;
    -moz-transition: none;
    -ms-transition: none;
    -o-transition: none;
    transition: none;
}

.left-sidebar {
    box-shadow: 0 -1px 0 0 rgba(209,209,209,0.5);
}

.left-sidebar ul {
    margin: 0;
    padding: 0;
}

.left-sidebar ul li{
    list-style: none;
    padding: 0 15px;
}

.left-sidebar ul li a img {
    margin-right: 20px;
}

.left-sidebar ul li a {
    color: #C5C5C5;
    display: block;
    padding: 13px 0;
    font-weight: 500;
}

.left-sidebar ul li:hover {
    text-decoration: none;
    background: #00AFE8;
}

.left-sidebar ul li:hover a {
    color: white;
    text-decoration: none;
}

.left-sidebar ul li.active {
    background: #00AFE8;
}

.left-sidebar ul li.active a {
    color: white
}

.user-menu {
    font-size: 30px;
}

.user-menu li {
    /*margin-left: 30px;*/
}

.content {
}

.warning-icon {
    margin: 0 20px 0 0;
}

.warning-icon img {
    width: 20px;
}

.alert {
    border-radius: 0;
    border: none;
    margin-top:20px;
}

/* PAGINATION */

.pagination {
    margin:0;
}

.pagination li {
    border: 1px solid #e2e2e2;
    margin: 0 1px;
}

.pagination li span, .pagination li a{
    padding: 5px 7px;
    display: inline-block;
}

/** HOME **/

.page-title {
    font-weight: 600;
    /*margin: 30px 0;*/
}

.block {
    background: white;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.title-block {
    font-size: 26px;
    font-weight: 600;
}

.block .block-title, .block h4 {
    font-weight: bold;
    font-size: 24px;
    word-wrap: normal ;
}

.subscription-card-data {
    border-style: solid;
    border-color: #e2e2e2;
    border-width: 1px;
    /*border-right: none;*/
    padding: 15px 20px;
}

.subscription-card-data:last-child {
    border-right:1px solid #e2e2e2;
}

.subscription-card-data div{
    align-items: center;
}

.subscription-card-data i.fa {
    font-size: 30px;
}

.subscription-card-text {
    padding-left: 20px;
    line-height: 1.2;
}

.icon-block {
    padding-top: 10px;
    text-align: center;
}

.payment-info {
    padding-left: 20px;
}

.closed {
    color: darkgray;
}

.btn {
    border-radius: 0;

}

.btn:hover {
    cursor: pointer !important;
}

.cta-btn {
    display: inline-block;
    padding:15px 30px;
    color: #fff;
    margin: 17px 0;
    font-weight: bold;
    border: none;
}
.cta-btn:hover {
    text-decoration: none;
    color: white;
}

.btn-blue {
    background: #00AFE8;
}

.btn-blue:hover {
    background: #008CB9 !important;
}

.btn-green {
    background: #0BB07B;
}

.btn-red {
    background: #F03D3D;
}

/* FORMS */

label {
    font-weight: 500;
}

input[type=text], input[type=email], input[type=password] {
    padding: 12px 10px;
}

select.form-control:not([size]):not([multiple]) {
    height: 50px;
}

#login-form-block {

}

input, .form-control {
    border-radius: 0;
}

#login-form input {
    outline: none;
    border: none;
    /*display: block;*/
    line-height: 1.2em;
    font-size: 15px;
    padding: 0 12px 0 12px;
    color: #000;

}

.login-form-input {
    display: block;
    padding: 5px;
    border: 2px solid #D1D1D1;
}

.login-form-input label{
    padding-left: 12px;
}

.help-block {
    padding-left: 12px;

}

.form-logo {
    margin-bottom: 20px;
}

#login-form .form-control:focus {
    border: none;
}

.form-control:focus {
    box-shadow: none;
    border: 2px solid #00AFE8;
}

/* Chekcbox */
.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    padding-top: 8px;
    cursor: pointer;
    font-size: 16px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkbox-container .checkmark {
    position: absolute;
    top: 10px;
    left: 0;
    height: 20px;
    width: 20px;
    border: 2px solid #D1D1D1;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: #ccc;
}

.checkbox-container input:checked ~ .checkmark {
    background-color: #00AFE8;
}

.checkbox-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkmark-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 9px;
    top: 5px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* Radio btn */

.radio-container {
    display: block;
    position: relative;
    padding-left: 56px;
    padding-top: 12px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 2px solid #e2e2e2;
    height:50px;
    margin-right:20px;
    width: 100%;
}

.radio-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.radio-container .checkmark {
    position: absolute;
    top: 16px;
    left: 24px;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border-color: #e2e2e2;
    border-width: 5px;
    border-radius: 50%;
    border-style: solid;
}

.radio-container:hover input ~ .checkmark {
    border-color: #00AFE8;
}

.radio-container input:checked ~ .checkmark {
    border-color: #00AFE8;
}

.radio-container .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .checkmark:after {
    display: block;
}

.radio-container .checkmark:after {
    top: 9px;
    left: 9px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: white;
}

/* Validation */

.error {
    color: #F03D3D;
}

.has-error input, .has-error {
    border: 2px solid #F03D3D;
}

.validated input, .validated {
    border: 2px solid #0BB07B;
}

input.validated {
    background: url(/icons/correct-ingevuld.svg) no-repeat 99% 50%;
}

#subscribe-slot-data {
    margin: 20px 0 50px 0;
    font-weight: 500;
}

#subscribe-slot-data img {
    margin-right: 20px;
}

/* THANK YOU PAGE */

.success-message {
    text-align: center;
    padding: 20px;
    max-width: 690px;
    font-size: 20px;
}

.success-message p {
    line-height: 30px;
}

.success-message-header {
    font-weight: 800;
    font-size: 32px;
    margin: 30px 0 15px 0;
}

 /* MESSAGES */

.messages-container {
    padding: 20px 40px;
}

.message-block {
    background: #f3f1f1;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.helpdesk-message .message-block{
    background: #f7f3d2;
}

.message-block.new-message {
    background: #dbffdb;
}

.unread-counter {
    background: #F5A623;
    color: black;
    margin-left: 20px;
    border-radius: 2px;
    min-width: 30px;
    display: inline-block;
    text-align: center;
}

@media screen and (min-width: 1440px){
    #login-form-container {
        max-width: 600px;
    }

    .subscription-form-container {
        max-width: 720px;
    }
}


.login-copyright, .login-copyright a {

    color: #9B9B9B;
    font-size: 14px;
}

.login-copyright a:hover, .login-copyright a:focus {

    color: #00AFE8;
}




/*CUSTOM LOGIN*/


#login-master .login-form{
    width: 360px;
    background: #fff;
    height: 580px;
    padding: 80px 40px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
}

#login-master  .login-form h1{
    text-align: center;
    margin-bottom: 60px;
}

#login-master  .txtb{
    border-bottom: 2px solid #adadad;
    position: relative;
    margin: 30px 0;
}

#login-master  .txtb input{
    font-size: 15px;
    color: #333;
    border: none;
    width: 100%;
    outline: none;
    background: none;
    padding: 0 5px;
    height: 40px;
}

#login-master .txtb span::before{
    content: attr(data-placeholder);
    position: absolute;
    top: 50%;
    left: 5px;
    color: #adadad;
    transform: translateY(-50%);
    z-index: -1;
    transition: .5s;
}

#login-master .txtb span::after{
    content: '';
    position: absolute;

    width: 0%;
    height: 2px;
    background: linear-gradient(120deg,#09c6f9,#045de9);
    transition: .5s;
    left:0px;
    bottom:-2px;
}

#login-master .focus + span::before{
    top: -5px;


}
#login-master .focus + span::after{
    width: 100%;
    left:0px !important;
    bottom: -2px !important;
}

#login-master .logbtn{
    display: block;
    width: 100%;
    height: 50px;
    border: none;
    background: linear-gradient(120deg,#09c6f9,#045de9);
    background-size: 200%;
    color: #fff;
    outline: none;
    cursor: pointer;
    transition: .5s;

}

#login-master .logbtn:hover{
    background-position: right;
}

#login-master .bottom-text{
    margin-top: 60px;
    text-align: center;
    font-size: 13px;
}


#login-master .has-error{

    border-top: none !important;
    border-right: none !important;
    border-left: none !important;
    padding:10px 0px 0px 0px !important;
    margin:10px 0px 0px 0px !important;
}

#login-master .help-block {

    padding-left: 5px !important;

}

.form-feedback {
    margin-bottom: 20px;
    margin-top:10px;
    color: red !important;
}

/*END CUSTOM LOGIN*/



