﻿/*-- 
[INDEX]
    
1. General Styles
2. Login
3. User Management
4. Enabled Features
    4.1. On/Off Switch
5. Carrier Settings
6. Reports
7. Warning Messages Modal 
8. spinner loaded reports

--*/

/*--------------------------------------- 
  1. General Styles 
  ---------------------------------------*/
.top-margin-small {
    margin-top: 5%;
}

.top-margin-smaller {
    margin-top: 2%;
}

.left-margin-small {
    margin-left: 3%;
}

.right-margin-small {
    margin-right: 3%;
}

.right-margin-smaller {
    margin-right: 1%;
}

.side-margin-small {
    margin-left: 3%;
    margin-right: 3%;
}

.medium-padding {
    padding: 24px;
}

.whiteBackground {
    background: white;
    color: #313335;
}

.paddingSmall{
    padding: 2%
}

.small-padding {
    padding: 1%;
}

.left-padding-small {
    padding: 0 0 0 8% !important;
}

.darkBackground {
    background-color: #313335;
    color: #6ec491;
}

.textWhite {
    color:white;
}

.right {
    text-align: right;
    float: right;
}

.textRight {
    text-align: right;    
}

.textCenter {
    text-align: center;
}

h1 {
    font-size: 2.5em;
    font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin-top: 40px;
    margin-bottom: 30px;
    color: #585b60;
}

h2 {
    font-size: 2.3em;
    font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
    margin-top: 3%;
    margin-bottom: 2%;
    color: #20252b;
}

h3 {
    font-size: 1.5em;
    font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
    font-weight: 400;
    margin-bottom: 3%;
    color: #20252b;
}

h4 {
    font-size: 1.2em;
    font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
    font-weight: 500;
    margin-bottom: 1%;
    color: #20252b;
}

p {
    font-size: 1.3em;
    font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
    margin-bottom: 3%;
    color: #20252b;
}

#settingsGeneral:hover, #settingsFeatures:hover, #settingsCarrier:hover, #settingsRates:hover, #settingsPackaging:hover {
    background: #e5e6e6;
    cursor: pointer;
    cursor: hand;
}

.v-center {
    display: flex;
    align-items: center;
}

.style-link {
    font-size: 16px !important;
    color: #0090ff !important;
    text-decoration: underline !important;
}

.fontBigger {
    font-size: 1.2em;
}

.border-silver {
    border: 1px solid #e5e6e6;
}

.border-red {
    border: 1px solid red;
}

.border-blue {
    border: 1px solid blue;
}

.margin-bottom-xxxxl {
    margin-bottom: 4%;
}

.noBorderBottom {
    border-bottom: none !important;
}

.cursor-disabled {
    cursor: not-allowed !important;
}

/*--------------------------------------- 
  2. Login
  ---------------------------------------*/
.loginStyle {
    background: #212B36;
}

.loginLogo {
    display: block;
    margin: auto;
    height: auto;
    width: 55%;
}

.loginLogo2 {
    display: block;
    margin: auto;
    height: auto;
    width: 50%;
    margin-top: 25%;
    margin-bottom:10%;
}

.loginCheckbox label {
    opacity: 1;
}


/*--------------------------------------- 
  3. User Management 
  ---------------------------------------*/
.modal-backdrop {
    height: 150%;
}

/*--------------------------------------- 
  4. Enabled Features
  ---------------------------------------*/
.titleFeature {
    display: block;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: large;
    font-weight: 500;
    padding-left: 0%;
}

.titleSubFeature {
    display: block;
    font-size: large;
    font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-weight: normal;
    padding-left: 10%;
}

.subFeatureDescription {
    padding-left: 10%;
}

/*--------------------------------- 
    4.1 On/Off Switch 
*/

.onoffswitch {
    position: relative; width: 95px;
    -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}

.onoffswitch-checkbox {
    display: none;
}

.onoffswitch-label {
    display: block; overflow: hidden; cursor: pointer;
    border: 2px solid #FFFFFF; border-radius: 50px;
}

.onoffswitch-inner {
    display: block; width: 200%; margin-left: -100%;
    transition: margin 0.3s ease-in 0s;
}

.onoffswitch-inner:before, .onoffswitch-inner:after {
    display: block; float: left; width: 50%; height: 31px; padding: 0; line-height: 31px;
    font-size: 16px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: 600;
    box-sizing: border-box;
}

.onoffswitch-inner:before {
    content: "ON";
    padding-left: 14px;
    background-color: #EEEEEE; color: #0065B3;
}

.onoffswitch-inner:after {
    content: "OFF";
    padding-right: 14px;
    background-color: #EEEEEE; color: #999999;
    text-align: right;
}

.onoffswitch-switch {
    display: block; width: 38px; margin: 1.5px;
    background: #A1A1A1;
    position: absolute; top: 0; bottom: 0;
    right: 54px;
    border: 2px solid #FFFFFF; border-radius: 50px;
    transition: all 0.3s ease-in 0s; 
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
    margin-left: 0;
}

.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
    right: 0px; 
    background-color: #0065B3;
}

/*--------------------------------------- 
  5. Carrier Settings
  ---------------------------------------*/
.btn-grey {
    background: #e5e6e6;
    border-color: #e5e6e6;
    color: #4e515a;
}

.btn-grey:hover {
    background: #d1d1d1;
    border-color: #d1d1d1;
    color: #4e515a;
    cursor: pointer;
    cursor: hand; /*IE*/
}

.cursorLabel:hover {
    cursor: pointer;
    cursor: hand; /*IE*/
}

/*--------------------------------------- 
  6. Reports 
  ---------------------------------------*/


@media only screen and (min-width: 100px) and (max-width: 980px) {

    .max-width-s {
        width: 42%;
    }
  
 
}

@media only screen and (min-width: 980px) and (max-width: 1680px) {

    .max-width-m {
        width: 350px;
    }
    .max-width-mm {
        width: 125px;
    }
}



@media only screen and (min-width: 1680px) and (max-width: 2048px) {

    .max-width-l {
        width: 420px;
    }
    .max-width-ll {
        width: 220px;
    }
}


/*--------------------------------------- 
  7. Warning Messages Modal 
  ---------------------------------------*/

.modal-WM {
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0,0,0,0.3);
    backdrop-filter: blur(3px);
}

.md-WM {
    margin: 0;
}

.mh-WM {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #0070D6;
    border-bottom: 1px solid #0065B3;
    color: white;
}

.mt-WM {
    font-weight: bold;
    font-size: 22px;
    text-align: center !important;
    font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
}

.c-WM {
    background: none;
    border: none;
    font-size: 24px;
    color: #fff !important;
    cursor: pointer;
    padding: 10px;
    transition: transform 300s;
    font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
}

.c-WM:hover {
    transform: scale(1.1);
}

.mb-WM {
    text-align: justify;
    padding: 20px;
    font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
}

.mf-WM {
    background-color: #fff;
    border-top: none;
    font-family: "Roboto", sans-serif, Helvetica, Arial, sans-serif;
}

/*--------------------------------------- 
  8. spinner loaded reports
  ---------------------------------------*/
.center-container {
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100vh; 
    width: 100vw; 
    position: fixed; 
    top: 0;
    left: 0;
    z-index: 999; 
    background-color: rgba(254, 254, 254, 0.5); 
}

.boxed {
    padding: 2px;
    border-radius: 50px;
    width: 55%;
}

.spinnerContainer {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.spinner {
    width: 56px;
    height: 56px;
    display: grid;
    border: 4px solid #0000;
    border-radius: 50%;
    border-right-color: #0066cc;
    animation: tri-spinner 1s infinite linear;
}


    .spinner::before,
    .spinner::after {
        content: "";
        grid-area: 1/1;
        margin: 2px;
        border: inherit;
        border-radius: 50%;
        animation: tri-spinner 2s infinite;
    }

    .spinner::after {
        margin: 8px;
        animation-duration: 3s;
    }

@keyframes tri-spinner {
    100% {
        transform: rotate(1turn);
    }
}

.loader {
    color: #333;
    font-family: "Poppins",sans-serif;
    font-weight: 500;
    font-size: 20px;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    height: 40px;
    padding: 10px 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    border-radius: 8px;
}

.words {
    overflow: hidden;
}

.word {
    display: block;
    height: 100%;
    padding-left: 6px;
    color: #0066cc;
    font-size:25px;
    font-weight: 500;
    animation: cycle-words 5s infinite;
}

@keyframes cycle-words {
    10% {
        -webkit-transform: translateY(-105%);
        transform: translateY(-105%);
    }

    25% {
        -webkit-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    35% {
        -webkit-transform: translateY(-205%);
        transform: translateY(-205%);
    }

    50% {
        -webkit-transform: translateY(-200%);
        transform: translateY(-200%);
    }

    60% {
        -webkit-transform: translateY(-305%);
        transform: translateY(-305%);
    }

    75% {
        -webkit-transform: translateY(-300%);
        transform: translateY(-300%);
    }

    85% {
        -webkit-transform: translateY(-405%);
        transform: translateY(-405%);
    }

    100% {
        -webkit-transform: translateY(-400%);
        transform: translateY(-400%);
    }
}

/*--------------------------------------- 
  9. login loader
  ---------------------------------------*/

.loader-container2 {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-top:18px;
    height:50%;
}

.loader2 {
    width: 50px;
    height: 50px;
    position: relative;
}

    .loader2:before {
        content: "";
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 6px solid #0066cc;
        position: absolute;
        top: 0;
        left: 0;
        animation: pulse 1s ease-in-out infinite;
    }

    .loader2:after {
        content: "";
        width: 50px;
        height: 50px;
        border-radius: 50%;
        border: 6px solid transparent;
        border-top-color: #0066cc;
        position: absolute;
        top: 0;
        left: 0;
        animation: spin 2s linear infinite;
    }

.loader-text2 {
    font-size: 18px;
    margin-top: 10px;
    color: #0066cc;
    font-family: Arial, sans-serif;
    text-align: center;
    text-transform: uppercase;
}

@keyframes pulse {
    0% {
        transform: scale(0.6);
        opacity: 1;
    }

    50% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(0.6);
        opacity: 1;
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.content {
    display: none;
}

.loaded2 .loader-container2 {
    display: none;
}

.loaded2 .content {
    display: block;
}

