input, textarea, select {
    padding: 5px 2px;
    font-size: 16px;
    border-radius: 5px;
    border: none;
    background-color: var(--white-color);
    width: 100%;
    outline: none;
    caret-color: var(--body-font-color);
    color: var(--heading-color);
    font-weight: 500;
    max-height: 55px
}

input::-webkit-input-placeholder, textarea::-webkit-input-placeholder, select::-webkit-input-placeholder {
    color: var(--placeholder-color);
    opacity: 1
}

input::-moz-placeholder, textarea::-moz-placeholder, select::-moz-placeholder {
    color: var(--placeholder-color);
    opacity: 1
}

input:-moz-placeholder, textarea:-moz-placeholder, select:-moz-placeholder {
    color: var(--placeholder-color);
    opacity: 1
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder, select:-ms-input-placeholder {
    color: var(--placeholder-color);
    opacity: 1
}

input:focus, textarea:focus, select:focus {
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

input.input--white, textarea.input--white, select.input--white {
    background-color: var(--white-color)
}

input.input--white:focus::-webkit-input-placeholder, textarea.input--white:focus::-webkit-input-placeholder, select.input--white:focus::-webkit-input-placeholder {
    color: var(--border-grey-color);
    opacity: 1
}

input.input--white:focus::-moz-placeholder, textarea.input--white:focus::-moz-placeholder, select.input--white:focus::-moz-placeholder {
    color: var(--border-grey-color);
    opacity: 1
}

input.input--white:focus:-moz-placeholder, textarea.input--white:focus:-moz-placeholder, select.input--white:focus:-moz-placeholder {
    color: var(--border-grey-color);
    opacity: 1
}

input.input--white:focus:-ms-input-placeholder, textarea.input--white:focus:-ms-input-placeholder, select.input--white:focus:-ms-input-placeholder {
    color: var(--border-grey-color);
    opacity: 1
}

input.input--dark, textarea.input--dark, select.input--dark {
    background-color: var(--input-dark-bg);
    color: var(--placeholder-color)
}

input.input--dark::-webkit-input-placeholder, textarea.input--dark::-webkit-input-placeholder, select.input--dark::-webkit-input-placeholder {
    color: var(--grey-themes);
    opacity: 1
}

input.input--dark::-moz-placeholder, textarea.input--dark::-moz-placeholder, select.input--dark::-moz-placeholder {
    color: var(--grey-themes);
    opacity: 1
}

input.input--dark:-moz-placeholder, textarea.input--dark:-moz-placeholder, select.input--dark:-moz-placeholder {
    color: var(--grey-themes);
    opacity: 1
}

input.input--dark:-ms-input-placeholder, textarea.input--dark:-ms-input-placeholder, select.input--dark:-ms-input-placeholder {
    color: var(--grey-themes);
    opacity: 1
}

input.input--dark:focus, textarea.input--dark:focus, select.input--dark:focus {
    background-color: var(--white-color)
}

input.input--dark:focus::-webkit-input-placeholder, textarea.input--dark:focus::-webkit-input-placeholder, select.input--dark:focus::-webkit-input-placeholder {
    color: var(--border-grey-color);
    opacity: 1
}

input.input--dark:focus::-moz-placeholder, textarea.input--dark:focus::-moz-placeholder, select.input--dark:focus::-moz-placeholder {
    color: var(--border-grey-color);
    opacity: 1
}

input.input--dark:focus:-moz-placeholder, textarea.input--dark:focus:-moz-placeholder, select.input--dark:focus:-moz-placeholder {
    color: var(--border-grey-color);
    opacity: 1
}

input.input--dark:focus:-ms-input-placeholder, textarea.input--dark:focus:-ms-input-placeholder, select.input--dark:focus:-ms-input-placeholder {
    color: var(--border-grey-color);
    opacity: 1
}

input.input--grey, textarea.input--grey, select.input--grey {
    background-color: var(--white-color);
    border: 1px solid var(--border-grey-color);
    padding: .699rem .575rem;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
}

input.input--grey::-webkit-input-placeholder, textarea.input--grey::-webkit-input-placeholder, select.input--grey::-webkit-input-placeholder {
    color: var(--placeholder-color);
    opacity: 1
}

input.input--grey::-moz-placeholder, textarea.input--grey::-moz-placeholder, select.input--grey::-moz-placeholder {
    color: var(--placeholder-color);
    opacity: 1
}

input.input--grey:-moz-placeholder, textarea.input--grey:-moz-placeholder, select.input--grey:-moz-placeholder {
    color: var(--placeholder-color);
    opacity: 1
}

input.input--grey:-ms-input-placeholder, textarea.input--grey:-ms-input-placeholder, select.input--grey:-ms-input-placeholder {
    color: var(--placeholder-color);
    opacity: 1
}

input.input--grey:focus, textarea.input--grey:focus, select.input--grey:focus {
    background-color: var(--white-color);
    border-color: var(--blue-themes)
}

input.input--grey:invalid, textarea.input--grey:invalid, select.input--grey:invalid {
    border-width: 2px
}

input.input--squared, textarea.input--squared, select.input--squared {
    border-radius: 5px
}

input:invalid, textarea:invalid, select:invalid {
    border: 1px solid #ed1c24
}

.input-btn--inline {
    position: relative
}

.input-btn--inline .crumina-button {
    position: absolute;
    right: -1px;
    top: 0;
    bottom: 0;
    max-height: 100%
}

@media screen and (min-color-index:0) and (-webkit-min-device-pixel-ratio:0) {
    .input-btn--inline .crumina-button {
        max-height: unset;
        bottom: -1px
    }
}

.input--with-icon {
    position: relative
}

.input--with-icon input, .input--with-icon textarea, .input--with-icon select {
    margin-bottom: 0
}

.input--with-icon input:focus+.crumina-icon, .input--with-icon textarea:focus+.crumina-icon, .input--with-icon select:focus+.crumina-icon {
    fill: var(--primary-accent-color);
    color: var(--primary-accent-color)
}

.input--with-icon .crumina-icon {
    position: absolute;
    z-index: 1;
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    height: 25px;
    width: 25px;
    font-size: 25px;
    fill: var(--border-grey-color);
    color: var(--border-grey-color)
}

.input--icon-right input, .input--icon-right textarea, .input--icon-right select {
    padding-right: 70px
}

.input--icon-right .crumina-icon {
    right: 30px;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%)
}

.form--bordered {
    padding: 30px;
    border-radius: 5px;
    border: 1px solid var(--border-grey-color)
}

.form-title-with-border {
    text-align: center;
    margin: 0 0 30px 0;
    padding-bottom: 30px;
    border-bottom: 1px solid var(--border-grey-color)
}

.form--with-bg {
    padding: 30px;
    border-radius: 5px
}

label {
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 5px;
    color: var(--dark-themes)
}

label .required {
    color: #fe117c
}

.form-item {
    margin-bottom: 10px
}

.form-popup-subscribe .form-item {
    margin-bottom: 30px
}

.remember-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between
}

.remember-wrapper a {
    color: #0072BC
}

.remember-wrapper a:hover {
    color: #00C6FF
}

textarea {
    max-height: unset
}

.send-message-form .form-item, .submit-request-form .form-item {
    margin-bottom: 30px
}

.select2 {
    padding: 1rem 1.875rem;
    max-height: 60px;
    border-radius: 5px;
    background-color: var(--white-color);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
    outline: none;
    color: var(--placeholder-color);
    font-weight: 500;
    font-size: 16px;
    border: none
}

.select2.select2-container--open {
    background-color: var(--white-color);
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1)
}

.select2:disabled {
    color: var(--border-grey-color)
}

.select2:disabled+.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-bottom-color: var(--body-font-color);
    border-right-color: var(--body-font-color)
}

.select2:disabled+.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: transparent
}

.select2:disabled+.select2-container--default .select2-selection--single .select2-selection__rendered {
    color: var(--border-grey-color)
}

.select2-container--default .select2-selection--single {
    border-color: transparent;
    background-color: transparent
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 0;
    color: var(--placeholder-color)
}

.select2-container.select2-container--open .select2-selection--single .select2-selection__rendered {
    color: var(--dark-themes);
    -webkit-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease
}

.select2-container--default .select2-selection--single {
    outline: none
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    right: 40px
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: block;
    border-bottom: 2px solid var(--body-font-color);
    border-right: 2px solid var(--body-font-color);
    height: 8px;
    width: 8px;
    pointer-events: none;
    position: absolute;
    -webkit-transform-origin: 66% 66%;
    -ms-transform-origin: 66% 66%;
    transform-origin: 66% 66%;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out
}

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
    border-bottom-color: var(--primary-accent-color);
    border-right-color: var(--primary-accent-color)
}

.select2-dropdown {
    -webkit-box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    box-shadow: 0 10px 20px 0 rgba(0, 0, 0, .1);
    border-radius: 5px;
    top: 0;
    padding: 15px 10px
}

.select2-results__option {
    border-radius: 3px;
    padding: 10px 22px;
    color: var(--placeholder-color);
    font-weight: 500
}

.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background-color: var(--grey-themes);
    color: var(--dark-themes)
}

.select--bordered+.select2 {
    border-radius: 50px;
    border: 2px solid #dfe6ec;
    padding: .73rem 1.875rem
}

.select--bordered+.select2.select2-container .select2-selection--single .select2-selection__rendered {
    color: var(--dark-themes)
}

.select--bordered+.select2.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border-bottom: 2px solid var(--dark-themes);
    border-right: 2px solid var(--dark-themes)
}

.select--filter+.select2 {
    background-image: url(../svg-icons/icon-filter.svg);
    background-repeat: no-repeat;
    background-size: 18px 12px;
    background-position: 20px;
    padding-left: 50px
}

@media (max-width:768px) {
    input, textarea, select, .select2 {
        padding: .7rem 1.1rem;
        font-size: 14px
    }

    .remember-wrapper {
        font-size: 12px
    }
}

.New65-button {
    border-radius: 5px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    position: relative;
    text-align: center;
    line-height: 1;
    font-weight: 700;
    color: var(--white-color);
}

.New65-button:after {
    content: '';
    display: block;
    border-radius: 5px;
    position: absolute;
    top: -3px;
    left: -3px;
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    -webkit-box-shadow: inset 0 3px 0 0 rgba(33, 35, 43, .3);
    box-shadow: inset 0 3px 0 0 rgba(33, 35, 43, .3);
    opacity: 0;
}

.New65-button:hover {
    outline: none;
    text-decoration: none
}

.New65-button:focus {
    outline: none
}

.New65-button:active {
    outline: none
}

.New65-button:active:after {
    opacity: 1
}

.New65-button:disabled {
    background-color: var(--grey-themes) !important;
    color: var(--grey-themes) !important;
    border-color: var(--grey-themes) !important;
    cursor: not-allowed
}

.pricing-table--style2 .New65-button {
    margin-bottom: 10px;
    margin-top: 10px
}

.pricing-table--style2 .bg-layer {
    background-color: #FFFFFF;
    border-radius: 5px;
    z-index: -1;
    opacity: 0;
    border: 2px solid #03a9f4;
}

.pricing-table--style2:hover {
    z-index: 990
}

.pricing-table--style2:hover .bg-layer {
    -webkit-transform: translate3d(0, 0, 0) scaleX(1.03);
    transform: translate3d(0, 0, 0) scaleX(1.03);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    opacity: 1;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
}

.pricing-table--style2 .pricing-title {
    font-size: 35px;
    font-weight: 900;
}

.pricing-table--style2 .pricing-description {
    font-weight: none;
}

.pricing-table--style2 .rate {
    font-size: 31px;
    font-weight: 900;
}

.pricing-table--style2 .pricing-onsale {
    font-weight: 700;
    margin-bottom: 10px
}

.pricing-table--style2 .enw1 {
    color: #e53935;
}

.pricing-table--style2 .enw2 {
    color: #b0bec5;
    text-decoration: line-through;
}

.pricing-table--style2 .pricing-renew {
    font-size: 14px
}

.pricing-table--style2 .info-icon {
    top: -3px;
    position: relative
}

.pricing-table--style2 .crumina-button { 
    margin-bottom: 30px;
    margin-top: 30px
}

 
****/
 
.table{width:100%;margin-bottom:1rem;color:#212529;border-collapse:collapse!important}
.table tr{padding:.75rem;background-color:#fff;}
.table tr:hover{padding:.75rem;background-color:#FFF2F2;}
.table > tbody > tr > td {
    font-size: 20px;
}
.table > thead > tr > th, 
.table > tbody > tr > th,
 .table > tfoot > tr > th, 
 .table > thead > tr > td, 
 .table > tbody > tr > td, 
 .table > tfoot > tr > td {
    padding: 8px 38px;
    line-height: 1.42857143;
    border-top: 1px solid #ddd;
}
.text_domain{
    font-family:  Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    font-size: 22px;
    font-weight: 900;
    color:#79b700;
 
}
 
@media (min-width:275px) {
        .table_new65v0{
            width:100%;margin-bottom:1rem;color:#212529;border-collapse:collapse!important;font-size: 18px;background-color: #FFF;
        }
        .table_new65v0  tbody  tr{
            background-color: #FFF;
            border-bottom: 1px  #DBF3C5 dashed;
        }
        .table_new65v0  tbody  tr:hover{
            background-color: #F3FBEC;
        }
        .table_new65v0 > tbody > tr > td:nth-child(1) {
            width: 20% !important;
            text-align: left;
            line-height: 1.42857143;
            padding: 15px 0px 15px 30px;
        }
        .table_new65v0 > tbody > tr > td:nth-child(2) {
            width: 80% !important;
            text-align: right;
            padding: 15px 30px 15px 0px;
            font-weight: 900;
        }
        .table_new65v0 > tbody > tr > td:nth-child(3) {
            display: none;
            width: 50%;
            text-align: right;
            padding-right: 30px;
            padding: 15px 30px 15px 0px;
        }
   }
@media (min-width:700px) {
    .table_new65v0{
        width:100%;margin-bottom:1rem;color:#212529;border-collapse:collapse!important;font-size: 20px;background-color: #FFF;
    }
    .table_new65v0  tbody  tr{
        background-color: #FFF;
        border-bottom: 1px  #DBF3C5 dashed;
    }
    .table_new65v0  tbody  tr:hover{
        background-color: #F3FBEC;
    }
    .table_new65v0 > tbody > tr > td:nth-child(1) {
        width: 20% !important;
        text-align: left;
        line-height: 1.42857143;
        padding: 15px 0px 15px 30px;
    }
    .table_new65v0 > tbody > tr > td:nth-child(2) {
        width: 80% !important;
        text-align: right;
        padding: 15px 30px 15px 0px;
    }
    .table_new65v0 > tbody > tr > td:nth-child(3) {
        display: none;
        width: 50%;
        text-align: right;
        padding: 15px 30px 15px 0px;
        line-height: 1.42857143;
    }
}



@media (min-width:275px) {
    .table_new65v3{
        width:100%;margin-bottom:1rem;color:#212529;border-collapse:collapse!important;font-size: 16px;background-color: #FFF;
    }
    .table_new65v3  tbody  tr{
        background-color: #FFF;
        border-bottom: 1px  #DBF3C5 dashed;
    }
    .table_new65v3  tbody  tr:hover{
        background-color: #F3FBEC;
    }
    
    .table_new65v3 > tbody > tr > th:nth-child(1) {
        background-color: #0357AB;
        color: #fff;
        width: 80% !important;
        text-align: left;
        line-height: 1.42857143;
        padding: 15px 0px 15px 30px;
    }
    .table_new65v3 > tbody > tr > th:nth-child(2) {
        background-color: #0357AB;
        color: #fff;
        width: 20% !important;
        text-align: right;
        padding: 15px 30px 15px 0px;
    }
    .table_new65v3 > tbody > tr > td:nth-child(1) {
        width: 80% !important;
        text-align: left;
        line-height: 1.42857143;
        padding: 15px 0px 15px 30px;
    }
    .table_new65v3 > tbody > tr > td:nth-child(2) {
        width: 20% !important;
        text-align: right;
        padding: 15px 30px 15px 0px;
    }
 
 
}
@media (min-width:700px) {
.table_new65v3{
    width:100%;margin-bottom:1rem;color:#212529;border-collapse:collapse!important;font-size: 16px;background-color: #FFF;
}
.table_new65v3  tbody  tr{
    background-color: #FFF;
    border-bottom: 1px  #DBF3C5 dashed;
}
.table_new65v3  tbody  tr:hover{
    background-color: #F3FBEC;
}
.table_new65v3 > tbody > tr > th:nth-child(1) {
    background-color: #0357AB;
    color: #fff;
    width: 80% !important;
    text-align: left;
    line-height: 1.42857143;
    padding: 15px 0px 15px 30px;
}
.table_new65v3 > tbody > tr > th:nth-child(2) {
    background-color: #0357AB;
    color: #fff;
    width: 20% !important;
    text-align: right;
    padding: 15px 30px 15px 0px;
}
.table_new65v3 > tbody > tr > td:nth-child(1) {
    width: 80% !important;
    text-align: left;
    line-height: 1.42857143;
    padding: 15px 0px 15px 30px;
}
.table_new65v3 > tbody > tr > td:nth-child(2) {
    width: 20% !important;
    text-align: right;
    padding: 15px 30px 15px 0px;
}
 
}


@media (max-width: 480px){
   .card_profile65 {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    margin: 0px;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0px 1rem 1.5rem rgba(0,0,0,0.5);
  }
}
 
 
/**************BOX New65************
 
****/
   .heading-text_add{
    box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
    border: 1px solid #ccc;
    border-radius: 10px;
    margin-bottom: 15px;
}
.heading-text_add:hover{
    border: 1px solid #00C6FF;
}
.heading-text_add img{
    border-radius: 10px 10px 0px 0px;
}
 
.title_nw65_h{
    padding: 20px 15px;
    margin: 0px;
    font-size: 20px;
    text-transform:capitalize !important;
    background-color: #FFF;
    color: #000;
    border-radius: 0px 0px 10px 10px;
    text-align: left;
    height: 130px;
}
 .tax_nw65_h{
    width: 100%;
    height: 28px;
    font-size: 16px;
    padding: 5px 0px;
    border: 0px solid #000 !important;
}  
/*************************box profile********************/

.card_profile65 {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    margin: 20px;
    overflow: hidden;
    border-radius: 2rem;
    box-shadow: 0px 1rem 1.5rem rgba(0,0,0,0.5);
  }

  .card_profile65 .banner2 {
    background-image: url("../img/user_add_chk/S__6070313.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 11rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
  }
  .card_profile65 .banner2 img {
    background-color: #fff;
    width: 8rem;
    height: 8rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
    border-radius: 50%;
    transform: translateY(50%);
    transition: transform 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
    border: #FFF solid 3px;
  }

  .card_profile65 .banner {
    background-image: url("../img/153.webp");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 11rem;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    box-sizing: border-box;
  }
  .card_profile65 .banner img {
    background-color: #fff;
    width: 8rem;
    height: 8rem;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.3);
    border-radius: 50%;
    transform: translateY(50%);
    transition: transform 200ms cubic-bezier(0.18, 0.89, 0.32, 1.28);
    border: #FFF solid 3px;
  }
   
  .card_profile65 .box {
    width: 100%;
    margin-top: 80px;
   
  }
   
  .card_profile65 h5.name {
    text-align: center;
    padding: 0 2rem 0.5rem;
    margin: 0;
    font-weight: 900;
    color: #000;
  }
  .card_profile65 .title {
    color: #4fc3f7;
    font-size: 1.15rem;
    text-align: center;
    padding: 0 2rem 1.2rem;
  }
   
  .card_profile65 .desc {
    text-align: center;
    padding: 0 2rem 2.5rem;
    order: 100;
  }
  
/*------------GS School--------------*/

  @media (min-width:275px) {
    .table_new65v1{
       width:100%;margin-bottom:1rem;color:#212529;border-collapse:collapse!important;font-size: 14px;
   }
   .table_new65v1 > tbody > tr{
       border-bottom: 1px  #FCE4EC dashed;
   }
   .table_new65v1 > tbody > tr > td:nth-child(1) {
       padding:8px !important; 
       line-height: 1.42857143;
       text-align: left;
       
   }
   .table_new65v1 > tbody > tr > td:nth-child(2) {
       padding:8px !important; 
       line-height: 1.42857143;
       text-align: right;
   }

   }@media (min-width:700px) {
   .table_new65v1{
       width:100%;margin-bottom:1rem;color:#212529;border-collapse:collapse!important;font-size: 16px;
   }
   .table_new65v1 > tbody > tr{
       border-bottom: 1px  #FCE4EC dashed;
   }
   .table_new65v1 > tbody > tr > td:nth-child(1) {
       padding:6px 0px !important;
       line-height: 1.42857143;
       text-align: left;
       
   }
   .table_new65v1 > tbody > tr > td:nth-child(2) {
       padding:6px 0px !important;
       line-height: 1.42857143;
       text-align: right;
   }

   }

   /**************cr****************/
.cr-dark1{color:#000}.cr-dark2{color:#212121}.cr-dark3{color:#263238}.cr-dark4{color:#455a64}.cr-dark5{color:#78909c}.cr-dark6{color:#b0bec5}.cr-fff{color:#FFF}
.cr-yellow1{color:#FDB100}.cr-yellow2{color:#f4b459}.cr-yellow3{color:#F69B06}.cr-yellow4{color:#FFA616}.cr-yellow5{color:#FFED45}.cr-yellow6{color:#FFA616}
.cr-orange1{color:#ff3d00}.cr-orange2{color:#ff5722}.cr-orange3{color:#ff6d00}.cr-orange4{color:#ff8a65}.cr-orange5{color:#ffab91}
.cr-green1{color:#79b700}.cr-green2{color:#aeea00}.cr-green3{color:#e4ff54}.cr-green4{color:#005005}.cr-green5{color:#2e7d32}.cr-green6{color:#60ad5e}
.cr-red1{color:#b71c1c}.cr-red2{color:#d50000}.cr-red3{color:#e53935}.cr-red4{color:#ef5350}.cr-red5{color:#ffcdd2}
.cr-pink1{color:#F50057}.cr-pink2{color:#FF4081}.cr-pink3{color:#FF80AB}.cr-pink4{color:#F8BBD0}.cr-pink5{color:#FCE4EC}
.cr-blue1{color:#002f6c}.cr-blue2{color:#0d47a1}.cr-blue3{color:#0091ea}.cr-blue4{color:#03a9f4}.cr-blue5{color:#4fc3f7}.cr-blue6{color:#b3e5fc}
.cr-purple1{color:#000051}.cr-purple2{color:#1a237e}.cr-purple3{color:#534bae}.cr-purple4{color:#3949ab}.cr-purple5{color:#5c6bc0}.cr-purple6{color:#9fa8da}
.cr-dark1{color:#000}.cr-dark2{color:#212121}.cr-dark3{color:#263238}.cr-dark4{color:#455a64}.cr-dark5{color:#78909c}.cr-dark6{color:#b0bec5}.cr-fff{color:#FFF}
.cbg-yellow1{background-color:#FDB100}.cbg-yellow2{background-color:#f4b459}.cbg-yellow3{background-color:#F69B06}.cbg-yellow4{background-color:#FFA616}.cbg-yellow5{background-color:#FFED45}.cbg-yellow6{background-color:#FFA616}
.cbg-orange1{background-color:#ff3d00}.cbg-orange2{background-color:#ff5722}.cbg-orange3{background-color:#ff6d00}.cbg-orange4{background-color:#ff8a65}.cbg-orange5{background-color:#ffab91}
.cbg-green1{background-color:#79b700}.cbg-green2{background-color:#aeea00}.cbg-green3{background-color:#e4ff54}.cbg-green4{background-color:#005005}.cbg-green5{background-color:#2e7d32}.cbg-green6{background-color:#60ad5e}
.cbg-red1{background-color:#b71c1c}.cbg-red2{background-color:#d50000}.cbg-red3{background-color:#e53935}.cbg-red4{background-color:#ef5350}.cbg-red5{background-color:#ffcdd2}
.cbg-pink1{background-color:#F50057}.cbg-pink2{background-color:#FF4081}.cbg-pink3{background-color:#FF80AB}.cbg-pink4{background-color:#F8BBD0}.cbg-pink5{background-color:#FCE4EC}
.cbg-blue1{background-color:#002f6c}.cbg-blue2{background-color:#0d47a1}.cbg-blue3{background-color:#0091ea}.cbg-blue4{background-color:#03a9f4}.cbg-blue5{background-color:#4fc3f7}.cbg-blue6{background-color:#b3e5fc}
.cbg-purple1{background-color:#000051}.cbg-purple2{background-color:#1a237e}.cbg-purple3{background-color:#534bae}.cbg-purple4{background-color:#3949ab}.cbg-purple5{background-color:#5c6bc0}.cbg-purple6{background-color:#9fa8da}
 
/**************table************



