﻿* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html, body {
    height: 100%;
    width: 100%;
    padding: 0;
    margin: 0;
    font-weight: 200;
}

.page {
    padding: 20px 20px;
}

@keyframes blink-animation {
    to {
        visibility: hidden;
    }
}

@-webkit-keyframes blink-animation {
    to {
        visibility: hidden;
    }
}
/* BUTTONS */
/**/
.btn-primary {
    color: #fff !important;
    white-space: nowrap;
}

    .btn-primary:hover, .btn-primary:focus, .btn-primary:active, .btn-primary:active:focus, .btn-primary.active, .open > .dropdown-toggle.btn-primary {
        color: #fff !important;
        background-color: #e52c75 !important;
        border-color: #e52c75 !important;
    }

.big-button {
    width: 200px !important;
    height: 40px !important;
    font-weight: 300;
    font-size: 20px;
}

.toast-remove-all {
    text-shadow: 0 1px 0 #fff;
    font-size: .8rem;
    float: right;
    line-height: 1;
    font-weight: 200;
    border: 0px;
}

.button-remove-all {
    padding: 5px;
    margin: 5px;
    background: transparent;
    opacity: .3;
    border: 0px;
}

.button-remove-all:hover {
    opacity: .9;
}

.alertt-title {
    text-align: left;
    font-size: 13px;
}

.alertt_desc {
    font-size: 15px;
    text-align: center;
    padding: 5px;
}

.alertt-small-time {
    text-align: left;
    font-size: 10px;
    margin-left: 5px;
}

.alert-warning {
    color: #1E2833;
    background-color: white;
    padding: 3px;
    width: 100%;
}

.close-button {
    padding: 2px;
}

.small-button {
    width: 140px !important;
    height: 40px !important;
    font-weight: 300;
    font-size: 14px;
}


.padding-btn {
    padding-right: 10px;
}

/* MODAL DIALOG STYLES */

.slider::-webkit-slider-thumb {
    background: #e52c75;
}

.slider::-moz-range-thumb {
    background: #e52c75;
}

.slider::-ms-thumb {
    background: #e52c75;
}

/* SMALL CLASSES - COLORS ETC. */

.border-left {
    border-left: 1px solid #d3d3d3;
}

.pb20 {
    padding-bottom: 20px;
}

.pr20 {
    padding-right: 20px;
}

.pl20 {
    padding-left: 20px;
}

.pr40 {
    padding-right: 40px;
}

.pl40 {
    padding-left: 40px;
}

.w50 {
    width: 50% !important;
}

.w100 {
    width: 100% !important;
}

.flex-item {
    display: flex;
}

.input-readonly {
    background-color: #c0c0c0 !important;
}

.link {
    cursor: pointer;
}

.bg-pink {
    background-color: #e52c75 !important;
}

.font-pink {
    /* color: #C2185B; */
    color: #e52c75;
}

.font-white {
    color: white;
}

.font-green {
    color: mediumseagreen;
}

.font-red {
    color: #FF4D4D;
}

.font-24 {
    font-size: 24px !important;
    font-weight: 300;
}

.font-18 {
    font-size: 18px !important;
    font-weight: 300;
}

/* LOADER */
.loader-container {
    background: rgba(0, 0, 0, .8);
    display: block;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 10000;
}

.loader {
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #214a80;
    width: 100px;
    height: 100px;
    -webkit-animation: spin 10s linear infinite;
    animation: spin 10s linear infinite;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    position: fixed;
    z-index: 10000;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
.navbar-nav {
    color: white;
}

.navbar-nav button {
    color: white;
    opacity: .5;
    font-weight: 200;
}

.navbar-nav button:hover {
    color: gray;
}

.dropdown-menu button:hover {
    background-color: #cccccc !important;
    color: black !important;
}

.dropdown-menu button.active {
    background-color: inherit !important;
    color: inherit !important;
}

    .dropdown-menu button.active:hover {
        background-color: #cccccc !important;
        color: black !important;
    }

.navbar-nav .show {
    background-color: #eeeeee;
    font-weight: 400;
}

.navbar-nav .show-title {
    background-color: transparent !important;
    font-weight: 400;
}

.navbar-nav a {
    color: black;
}

.dropdown-item {
    color: black !important;
    opacity: 1 !important;
}

.modal-color {
    background-color: #1e2833;
}

.modal-color-button {
    background-color: #214a80;
    color: white;
    opacity: 0.8;
    font-size: 15px;
}

.no-padding {
    padding: 0px;
}

.padding-15 {
    padding: 15px;
}

#table-fixed {
    table-layout: fixed;
    width: 100%;
}

.fix-column {
    width: 250px;
    white-space: inherit;
    text-align: center;
    vertical-align: top;
    background-color: #214a80;
}

.alerts-bottom {
    position: absolute;
}

.alerts-place {
    position: relative;
}

.box_overlay {
    position: absolute;
    top: 0;
    left: 0;
}

.dropdown-divider {
    border-top: 1px solid rgba(0,0,0,.1) !important;
}
