﻿/*-- 
[INDEX]
    
1. General Styles
2. Login
3. User Management
4. Enabled Features
    4.1. On/Off Switch
5. Carrier Settings
6. 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;
    }
}


