/* Version: 0.0.1
   Created: June 2020
   File Description: Decibite CSS Structure
*/
/*******************************************************/
/*         INDEX                                       */
/*======================================================
 *     01. Base                                        *
 *     02. Columns                                     *
 *     03. Forms                                       *
 *     04. Displays                                    *
 *     05. Formatting (Algin, Margin, Padding)         *
 *     06. Fonts/Text/Headings                         *
 *     07. Accordion                                   *
 *     08. Tabbed Menu                                 *
 *     09. Tables                                      *
 *     10. Switches                                    *
 *     11. Toasts                                      *
 *     12. Modals                                      *
 *     13. WHMCS Client Area                           *
 ======================================================*/

 /************ 01. Base *************/
*,
::after,
::before {
    box-sizing: border-box
}

:focus {
    outline: none; }
  
::-moz-selection {
    /* Code for Firefox */
    color: #1b55e2;
    background: transparent; }
  
 ::selection {
    color: #1b55e2;
    background: transparent; }

.container {
    padding-right: 85px;
    padding-left: 85px;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 1650px;
}

@media (max-width:915px) {
    .container {
        padding-right: 20px;
        padding-left: 20px;
    }
}

.back-to-top {
    z-index: 99;
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 33px;
    height: 33px;
    line-height: 33px;
    display: none;
    color: #3c4858;
    background-color: #ced4da;
    -webkit-transition: all 0.5s ease;
    transition: all 0.5s ease;
    -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
            box-shadow: 0 0 3px rgba(0, 0, 0, 0.15);
  }
  
  .back-to-top i {
    font-size: 16px;
  }
  
  .back-to-top:hover {
    background-color: #ff2f00;
    color: #ffffff;
  }

h1 {
    font-size: 36px;
}

h2, h3 {
  color: #142149;
}

.not-found-center {
    display: table;
    width: 100%;
    height:100%;
 }
  
 .not-found-home {
    height: 100vh;
 }

.home-center {
    display: table-cell;
    vertical-align: middle;
}

.img-fluid {
    height: auto;
    max-width: 100%;
}

.hero-home {
    display: table;
    width: 100%;
    height: 100%;
}

/********** 02. Columns ***********/
.col-auto {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: auto;
    max-width: 100%;
}

.col-1 {
    -ms-flex: 0 0 8.333333%;
    flex: 0 0 8.333333%;
    max-width: 8.333333%;
    width: 8.333333%;
  }
  
  .col-2 {
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    max-width: 16.666667%;
    width: 16.666667%;
  }
  
  .col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
    width:25%;
  }
  
  .col-4 {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
    width: 33.333333%;
  }
  
  .col-5 {
    -ms-flex: 0 0 41.666667%;
    flex: 0 0 41.666667%;
    max-width: 41.666667%;
    width: 41.666667%
  }
  
  .col-6 {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
  }
  
  .col-7 {
    -ms-flex: 0 0 58.333333%;
    flex: 0 0 58.333333%;
    max-width: 58.333333%;
    width: 58.333333;
  }
  
  .col-8 {
    -ms-flex: 0 0 66.666667%;
    flex: 0 0 66.666667%;
    max-width: 66.666667%;
    width: 66.666667%;
  }
  
  .col-9 {
    -ms-flex: 0 0 75%;
    flex: 0 0 75%;
    max-width: 75%;
    width: 75%;
  }
  
  .col-10 {
    -ms-flex: 0 0 83.333333%;
    flex: 0 0 83.333333%;
    max-width: 83.333333%;
    width: 83.333333%;
  }
  
  .col-11 {
    -ms-flex: 0 0 91.666667%;
    flex: 0 0 91.666667%;
    max-width: 91.666667%;
    width: 91.666667%;
  }
  
  .col-12 {
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    width: 100%;
  }

@media (max-width:915px) {
    .col-12 {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
    }
    
    .col-9 {
        max-width: 50%;
        flex: 0 0 50%;
        width: 50%;
    }
    
    .col-6 {
        position: relative;
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .col-4 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    
    .col-3 {
        width: 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
}

@media (max-width:471px) { 
    .col-8 {
        max-width: 100%;
        flex: 0 0 100%;
        width: 100%;
    }
    .col-4 {
        width: 100%;
        flex: 0 0 100%;
        max-width: 100%;
    }
    .col-3 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
    .col-2 {
        width: 50%;
        flex: 0 0 50%;
        max-width: 50%;
    }
}

/************ 03. Forms *************/

.form-control {
    min-width: 50px;
    width: 100%;
    font-weight: 400;
    display: block;
    line-height: 1;
    background-color: #fff;
    background-clip: padding-box;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    color: #3b3f5c;
    font-size: 13px;
    letter-spacing: 1px;
    padding: .75rem 1.25rem;
}

.form-control:focus {
    border-color: #5c1ac3;
    color: #495057;
    background-color: #fff;
    outline: 0;
    box-shadow: 0 0 0 0.08rem rgba(0, 123, 255, 0.25);
}

.form-title {
    font-weight: 500;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
}

/*********** 04. Displays ************/

.block {
    display: block;
}

.flex {
    display: flex !important;
}

.wrap {
    flex-wrap: wrap !important;
}

.none {
    display: none;
}

.inline-block {
    display: inline-block !important;
}

.flex-col {
    flex-direction: column !important;
}

@media (min-width: 608px) {
    .flex-row {
        flex-direction: row !important;
    }
}

/*********** 05. Formatting (Algin, Margin, Padding) ************/

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.dashboard-align {
    text-align: right;
}

.float-right {
    float: right;
}

/*MEDIA QUERY*/
@media (max-width: 925px) {
    .dashboard-align {
        text-align: center;
    }
}

.rounded {
    border-radius: .25rem;
}

.margin-auto {
    margin: auto;
}

.full-width {
    width: 100% !important;
}

.max-full-width {
    max-width: 100%;
}

.dashboard-dropdown {
    width: 50%;
}

/*MEDIA QUERY*/
@media (max-width: 925px) {
    .dashboard-dropdown {
        width: 100%;
    }
}

.flex-full {
    flex: 0 0 100%;
}

.fixed {
    position: fixed;
}

.m0 {
    margin: 0;
}

.mt0 {
    margin-top: 0;
}

.mt5 {
    margin-top: 5px;
}
.mt10 {
    margin-top: 10px;
}

.mt15 {
    margin-top: 15px;
}

.mt20 {
    margin-top: 20px;
}

.mt25 {
    margin-top: 25px;
}

.mt30 {
    margin-top: 30px;
}

.mt35 {
    margin-top: 35px;
}

.mt40 {
    margin-top: 40px;
}

.mt45 {
    margin-top: 45px;
}

.mt50 {
    margin-top: 50px;
}

.mb0 {
    margin-bottom: 0;
}

.mb5 {
    margin-bottom: 5px;
}

.mb10 {
    margin-bottom: 10px;
}

.mb15 {
    margin-bottom: 15px;
}

.mb20 {
    margin-bottom: 20px;
}

.mb25 {
    margin-bottom: 25px !important;
}

.mb30 {
    margin-bottom: 30px !important;
}

.mr5 {
    margin-right: 5px !important;
}

.mr10 {
    margin-right: 10px !important;
}

.mr15 {
    margin-right: 15px !important;
}

.mr20 {
    margin-right: 20px !important;
}

.mr25 {
    margin-right: 25px !important;
}

.mr30 {
    margin-right: 30px !important;
}

.ml5 {
    margin-left: 5px !important;
}

.ml7 {
    margin-left: 7px !important;
}

.ml10 {
    margin-left: 10px !important;
}

.ml15 {
    margin-left: 15px !important;
}

.ml20 {
    margin-left: 20px !important;
}

.ml25 {
    margin-left: 25px !important;
}

.ml30 {
    margin-left: 30px !important;
}

.p0 {
    padding: 0;
}

.p2 {
    padding: 2px;
}

.p3 {
    padding: 3px;
}

.p5 {
    padding: 5px;
}

.p10 {
    padding: 10px;
}

.p15 {
    padding: 15px;
}

.p20 {
    padding: 20px !important;
}

.p25 {
    padding: 25px;
}

.p30 {
    padding: 30px;
}

.p40 {
    padding: 40px;
}

.p50 {
    padding: 50px;
}

.p60 {
    padding: 60px;
}

.p70 {
    padding: 70px;
}

.pb0 {
    padding-bottom: 0 !important;
}

.pb5 {
    padding-bottom: 5px !important;
}

.pb10 {
    padding-bottom: 10px;
}

.pb20 {
    padding-bottom: 20px;
}

.pb30 {
    padding-bottom: 30px;
}

.pb40 {
    padding-bottom: 40px;
}

.pb50 {
    padding-bottom: 50px;
}

.pb55 {
  padding-bottom: 55px;
}

.pb60 {
  padding-bottom: 60px;
}

.pt5 {
    padding-top: 5px !important;
}

.pt10 {
    padding-top: 10px;
}

.pt15 {
    padding-top: 15px;
}

.pt20 {
    padding-top: 20px;
}

.pt25 {
    padding-top: 25px;
}

.pt30 {
    padding-top: 30px;
}

.pt35 {
    padding-top: 35px;
}

.pt40 {
    padding-top: 40px;
}

.pt50 {
    padding-top: 50px;
}

.pr5 {
    padding-right: 5px !important;
}

.pr10 {
    padding-right: 10px;
}

.pr20 {
    padding-right: 20px;
}

.pr30 {
    padding-right: 30px;
}

.pr40 {
    padding-right: 40px;
}

.pr50 {
    padding-right: 50px;
}

.pr100 {
    padding-right: 100px;
}

.pl0 {
    padding-left: 0;
}

.pl5 {
    padding-left: 5px;
}

.pl10 {
    padding-left: 10px;
}

.pl15 {
    padding-left: 15px;
}

.pl20 {
    padding-left: 20px;
}

.pl30 {
    padding-left: 30px;
}

.pl40 {
    padding-left: 40px;
}

.pl50 {
    padding-left: 50px;
}

.pl100 {
    padding-left: 100px;
}

.shadow-sm {
    box-shadow: 0 .125rem .25rem rgba(0, 0, 0, .075) !important;
}

textarea {
    overflow: auto;
    resize: vertical;
    height: 120px;
}

.form-group textarea {
    height: 120px !important;
}

/*********** 06. Fonts/Text/Headings ************/

.fw300 {
    font-weight: 300 !important;
}

.fw400 {
    font-weight: 400 !important;
}

.fw500 {
    font-weight: 500 !important;
}

.fw600 {
    font-weight: 600 !important;
}

.fw700 {
    font-weight: 700 !important;
}

.fw800 {
    font-weight: 800 !important;
}

.fw900 {
    font-weight: 900 !important;
}

.fs10 {
    font-size: 10px !important;
}

.fs11 {
    font-size: 11px !important;
}

.fs12 {
    font-size: 12px !important;
}

.fs13 {
    font-size: 13px !important;
}

.fs14 {
    font-size: 14px !important;
}

.fs15 {
    font-size: 15px !important;
}

.fs16 {
    font-size: 16px !important;
}

.fs17 {
    font-size: 17px !important;
}

.fs18 {
    font-size: 18px !important;
}

.fs19 {
    font-size: 19px !important;
}

.fs20 {
    font-size: 20px !important;
}

.fs24 {
    font-size: 24px !important;
}

.fs26 {
  font-size: 26px !important;
}

.fs28 {
  font-size: 28px !important;
}

.fs30 {
    font-size: 30px !important;
}

.fs34 {
  font-size: 34px !important;
}

.fs36 {
    font-size: 36px !important;
}

.fs40 {
    font-size: 40px !important;
}

.fs50 {
    font-size: 50px !important;
}

.fs60 {
    font-size: 60px !important;
}

.list-unstyled {
  list-style: none;
}

/*********** 07. Accordion ************/

 .accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
  }
  
  .active, .accordion:hover {
    background-color: #ccc;
  }
  
  .panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  } 

  .accordion:after {
    content: '\02795'; /* Unicode character for "plus" sign (+) */
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
  }
  
  .active:after {
    content: "\2796"; /* Unicode character for "minus" sign (-) */
  }

  .border {
      border: 1px solid #e9ecef !important;
  }

  .shadow {
      box-shadow: 0 0 3px rgba(60, 72, 88, 0.15) !important;
  }

  /*********** 08. Tabbed Menu ************/
  
  .tab button {
    cursor: pointer;
  }
  
  .tab button.active {
    background-color: #ccc;
  }
  
  .featureContent, .pricingContent, .pricingContentCompare, .pricingContentHero {
    display: none;
    padding: 6px 12px;
    border-top: none;
  } 

  .pricing-border {
    border-right: 2px solid #e5e8ed !important; 
  }

  @media (max-width:915px) {
    .pricing-border {
      border-right:none !important; 
      border-bottom: 2px solid #e5e8ed !important;
      margin-bottom: 40px;
    }
}

  .tab-basic {
    color: #212529;
    padding: 8px 10px;
    background-color: #fff;
    font-size: 1rem;
    font-weight: 500;
    border-bottom: 2px solid #e5e8ed !important;
  }

  .tab-active {
    padding: 8px 10px;
    color: #212529 !important;
    border-bottom: 2px solid #ff2f00 !important;
    font-size: 1rem;
    font-weight: 500;
  }

  /*********** 09. Tables ************/

  .table-responsive {
    display: block;
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .table-responsive > .table-bordered {
    border: 0;
  }

  .table {
    width: 100%;
    margin-bottom: 1rem;
    color: #212529;
    border-collapse: collapse;
  }

  .table-bordered td {
    border: 1px solid #ebedf2;
  }
  .table-bordered th {
    border: 1px solid #ebedf2;
  }

  .table > tbody > tr > td { 
    vertical-align: middle;
    color: #515365;
    font-size: 13px;
    letter-spacing: 1px; }
.table > thead > tr > th {
    color: #676767;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-transform: uppercase; 
    background: #fafafa;
}

.table > tbody > tr > td .usr-img-frame {
    background-color: #ebedf2;
    padding: 2px;
    width: 35px;
    height: 35px;
}
.table > tbody > tr > td .usr-img-frame img { width: 35px; margin: 0; }
.table > tbody > tr > td .admin-name {
    font-weight: 700;
    color: #515365;
}

.table th,
.table td {
  padding: 0.75rem;
  vertical-align: top;
  border-top: 1px solid #dee2e6;
}

.table-link {
    color:#ff2f00;
}

.table-link:hover {
    border-bottom: dotted 1px #ff2f00;
}

.input-group-text {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 0.375rem 0.75rem;
    margin-bottom: 0;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #495057;
    text-align: center;
    white-space: nowrap;
    background-color: #e9ecef;
    border: 1px solid #ced4da;
    border-radius: 0.25rem;
  }
  
  .input-group-text input[type="radio"],
  .input-group-text input[type="checkbox"] {
    margin-top: 0;
  }

/*********** 10. Switches ************/

  .switch {
  position: relative;
  display: inline-block;
  width: 35px;
  height: 18px; }
  .switch input {
    display: none; }
  .switch .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ebedf2;
    -webkit-transition: .4s;
    transition: .4s; }
    .switch .slider:before {
      position: absolute;
      content: "";
      background-color: white;
      -webkit-transition: .4s;
      -ms-transition: .4s;
      transition: .4s;
      height: 14px;
      width: 14px;
      left: 2px;
      bottom: 2px;
      box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.34); }
  .switch input:checked + .slider:before {
    -webkit-transform: translateX(17px);
    -ms-transform: translateX(17px);
    transform: translateX(17px); }
  .switch .slider.round {
    border-radius: 34px; }
    .switch .slider.round:before {
      border-radius: 50%; }
  .switch.s-default .slider:before {
    background-color: #d3d3d3; }
  .switch.s-primary .slider:before {
    background-color: #1b55e2; }
  .switch.s-success .slider:before {
    background-color: #8dbf42; }
  .switch.s-warning .slider:before {
    background-color: #e2a03f; }
  .switch.s-danger .slider:before {
    background-color: #e7515a; }
  .switch.s-secondary .slider:before {
    background-color: #5c1ac3; }
  .switch.s-info .slider:before {
    background-color: #2196f3; }
  .switch.s-dark .slider:before {
    background-color: #3b3f5c; }
  .switch input:checked + .slider:before {
    background-color: #fff; }
  .switch.s-default input:checked + .slider {
    background-color: #d3d3d3; }
  .switch.s-default input:focus + .slider {
    box-shadow: 0 0 1px #ebedf2; }
  .switch.s-primary input:checked + .slider {
    background-color: #1b55e2; }
  .switch.s-primary input:focus + .slider {
    box-shadow: 0 0 1px #1b55e2; }
  .switch.s-success input:checked + .slider {
    background-color: #8dbf42; }
  .switch.s-success input:focus + .slider {
    box-shadow: 0 0 1px #8dbf42; }
  .switch.s-warning input:checked + .slider {
    background-color: #e2a03f; }
  .switch.s-warning input:focus + .slider {
    box-shadow: 0 0 1px #e2a03f; }
  .switch.s-danger input:checked + .slider {
    background-color: #e7515a; }
  .switch.s-danger input:focus + .slider {
    box-shadow: 0 0 1px #e7515a; }
  .switch.s-secondary input:checked + .slider {
    background-color: #5c1ac3; }
  .switch.s-secondary input:focus + .slider {
    box-shadow: 0 0 1px #5c1ac3; }
  .switch.s-info input:checked + .slider {
    background-color: #2196f3; }
  .switch.s-info input:focus + .slider {
    box-shadow: 0 0 1px #2196f3; }
  .switch.s-dark input:checked + .slider {
    background-color: #3b3f5c; }
  .switch.s-dark input:focus + .slider {
    box-shadow: 0 0 1px #3b3f5c; }
  .switch.s-outline .slider {
    border: 2px solid #ebedf2;
    background-color: transparent;
    width: 36px;
    height: 19px; }
    .switch.s-outline .slider:before {
      height: 13px;
      width: 13px; }
  .switch.s-outline[class*="s-outline-"] .slider:before {
    bottom: 1px;
    left: 1px;
    border: 2px solid #bfc9d4;
    background-color: #bfc9d4;
    color: #ebedf2;
    box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.25); }
  .switch.s-icons.s-outline-default {
    color: #d3d3d3; }
  .switch.s-icons.s-outline-primary {
    color: #1b55e2; }
  .switch.s-icons.s-outline-success {
    color: #8dbf42; }
  .switch.s-icons.s-outline-warning {
    color: #e2a03f; }
  .switch.s-icons.s-outline-danger {
    color: #e7515a; }
  .switch.s-icons.s-outline-secondary {
    color: #5c1ac3; }
  .switch.s-icons.s-outline-info {
    color: #2196f3; }
  .switch.s-icons.s-outline-dark {
    color: #3b3f5c; }
  .switch.s-outline-default input:checked + .slider {
    border: 2px solid #ebedf2; }
    .switch.s-outline-default input:checked + .slider:before {
      border: 2px solid #d3d3d3;
      background-color: #d3d3d3;
      box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.25); }
  .switch.s-outline-default input:focus + .slider {
    box-shadow: 0 0 1px #ebedf2; }
  .switch.s-outline-primary input:checked + .slider {
    border: 2px solid #1b55e2; }
    .switch.s-outline-primary input:checked + .slider:before {
      border: 2px solid #1b55e2;
      background-color: #1b55e2;
      box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.34); }
  .switch.s-outline-primary input:focus + .slider {
    box-shadow: 0 0 1px #1b55e2; }
  .switch.s-outline-success input:checked + .slider {
    border: 2px solid #8dbf42; }
    .switch.s-outline-success input:checked + .slider:before {
      border: 2px solid #8dbf42;
      background-color: #8dbf42;
      box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.34); }
  .switch.s-outline-success input:focus + .slider {
    box-shadow: 0 0 1px #8dbf42; }
  .switch.s-outline-warning input:checked + .slider {
    border: 2px solid #e2a03f; }
    .switch.s-outline-warning input:checked + .slider:before {
      border: 2px solid #e2a03f;
      background-color: #e2a03f;
      box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.34); }
  .switch.s-outline-warning input:focus + .slider {
    box-shadow: 0 0 1px #e2a03f; }
  .switch.s-outline-danger input:checked + .slider {
    border: 2px solid #e7515a; }
    .switch.s-outline-danger input:checked + .slider:before {
      border: 2px solid #e7515a;
      background-color: #e7515a;
      box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.34); }
  .switch.s-outline-danger input:focus + .slider {
    box-shadow: 0 0 1px #e7515a; }
  .switch.s-outline-secondary input:checked + .slider {
    border: 2px solid #5c1ac3; }
    .switch.s-outline-secondary input:checked + .slider:before {
      border: 2px solid #5c1ac3;
      background-color: #5c1ac3;
      box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.34); }
  .switch.s-outline-secondary input:focus + .slider {
    box-shadow: 0 0 1px #5c1ac3; }
  .switch.s-outline-info input:checked + .slider {
    border: 2px solid #2196f3; }
    .switch.s-outline-info input:checked + .slider:before {
      border: 2px solid #2196f3;
      background-color: #2196f3;
      box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.34); }
  .switch.s-outline-info input:focus + .slider {
    box-shadow: 0 0 1px #2196f3; }
  .switch.s-outline-dark input:checked + .slider {
    border: 2px solid #3b3f5c; }
    .switch.s-outline-dark input:checked + .slider:before {
      border: 2px solid #3b3f5c;
      background-color: #3b3f5c;
      box-shadow: 0 1px 15px 1px rgba(52, 40, 104, 0.34); }
  .switch.s-outline-dark input:focus + .slider {
    box-shadow: 0 0 1px #3b3f5c; }
  .switch.s-icons {
    width: 57px;
    height: 30px; }
    .switch.s-icons .slider {
      width: 48px;
      height: 25px; }
      .switch.s-icons .slider:before {
        vertical-align: sub;
        color: #3b3f5c;
        height: 19px;
        width: 19px;
        line-height: 1.3;
        content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23e9ecef" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-x"><line x1="18" y1="6" x2="6" y2="18"></line><line x1="6" y1="6" x2="18" y2="18"></line></svg>'); }
    .switch.s-icons input:checked + .slider:before {
      content: url('data:image/svg+xml, <svg xmlns="http://www.w3.org/2000/svg" width="14" height="14" viewBox="0 0 24 24" fill="none" stroke="%23fff" stroke-width="2" stroke-linecap="round" stroke-linejoin="round" class="feather feather-check"><polyline points="20 6 9 17 4 12"></polyline></svg>');
      vertical-align: sub;
      color: #fff;
      line-height: 1.4;
      -webkit-transform: translateX(23px);
      -ms-transform: translateX(23px);
      transform: translateX(23px); }

/*********** 11. Toasts ************/

 .toast {
    visibility: hidden;
    min-width: 250px;
    margin-left: -125px;
    background-color: #333;
    color: #fff;
    text-align: center;
    border-radius: 2px;
    padding: 16px;
    position: fixed;
    z-index: 99;
    left: 50%;
    bottom: 30px;
    text-align: center;
  }
  .toast.show {
    visibility: visible; 
    -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
    animation: fadein 0.5s, fadeout 0.5s 2.5s;
  }

  .toast-green {
      background-color: #2ebf6d;
  }

  .toast-red {
      background-color: #ee1c0c;
  }

  .toast-blue {
      background-color: #2196f3;
  }

  @-webkit-keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @keyframes fadein {
    from {bottom: 0; opacity: 0;}
    to {bottom: 30px; opacity: 1;}
  }
  
  @-webkit-keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  }
  
  @keyframes fadeout {
    from {bottom: 30px; opacity: 1;}
    to {bottom: 0; opacity: 0;}
  } 

/*********** 12. Modals ************/

 .modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.4);
    padding-top: 100px;
  }
  
  .modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 60%;
    text-align: left;
  }

  @media (max-width:915px) {
    .modal-content {
      width: 85%;
    }
  }
  
  .close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
  }
  
  .close:hover,
  .close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
  } 

  .spin {
    -webkit-animation: spin 2s infinite linear;
    animation: spin 2s infinite linear; }
  
  @keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); }
    100% {
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg); } }
  
  @-webkit-keyframes spin {
    0% {
      -webkit-transform: rotate(0deg);
      transform: rotate(0deg); }
    100% {
      -webkit-transform: rotate(359deg);
      transform: rotate(359deg); } }

  /************ 13. WHMCS Client Area *************/

 .login-page {
  max-width: 500px;
  margin: auto;
}

.register-page {
 max-width: 800px;
 margin: auto;
}