﻿/* {
    box-sizing: border-box
}

body {
    font-family: "Lato", sans-serif;
}

.tab {
    float: left;
}

.tab button {
    display: block;
    padding: 10px;
    width: 100%;
    border: none;
    outline: none;
    text-align: left;
    cursor: pointer;
    transition: 0.3s;
    font-size: 14px;
    background-color: grey;
    color: white;
    margin-bottom: 5px;
}

.tabcontent {
    float: left;
    width: 100%;
    height: 300px;
}

.page-header,
.breadcrumb,
.footer {
    display: none;
}

#content_form, body {
    background-color: #eaeaea;
}

.tab-column {
    background-color: #eaeaea;
    border: 1px solid grey;
    margin-bottom: 10px;
}

.div-header-inner {
    background: grey;
    padding: 4px;
    color: white;
    font-weight: bold;
    margin-bottom: 10px;
}

.cls-button {
    background-color: grey;
    border-color: grey;
    font-size: 14px;
    color: #fff;
}

.tablinks.active {
    background-color: #0ea6c9;
    border-color: #0ea6c9;
}

.crmEntityFormView .cell {
    padding: 0 28px 20px;
}

.form-control:focus {
    border-color: #69c !important;
    outline: 0 !important;
    box-shadow: inset 0 1px 1px rgb(0 0 0 / 8%), 0 0 8px rgb(102 175 233 / 60%) !important;
}

.btn-primary:hover,
.btn-primary:active:hover,
.btn-primary:active:focus,
.btn-primary:active.focus,
.btn-primary.active:hover,
.btn-primary.active:focus,
.btn-primary.active.focus {
    color: #fff !important;
    background-color: #0ea6c9 !important;
    border-color: #0ea6c9 !important;
}

#processingMsg {
    width: 150px;
    text-align: center;
    padding: 6px 10px;
    z-index: 9999;
    top: 0;
    left: 40%;
    position: fixed;
    -webkit-border-radius: 0 0 2px 2px;
    border-radius: 0 0 2px 2px;
    -webkit-box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
    display: none;
}

.tabControl {
    padding-top: 20px;
}

.cls-error,
.cls-email-error {
    color: red;
    font-size: 12px;
}

.cls-error-hide {
    display: none;
}

.cls-button-disabled {
    cursor: not-allowed !important;
}


#loader {
    position: fixed;
    left: 53%;
    top: 50%;
    z-index: 99999;
    width: 60px;
    height: 60px;
    margin: -76px 0 0 -76px;
    border: 8px solid #f3f3f3;
    border-radius: 50%;
    border-top: 8px solid #3498db;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}

@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}*/