*{
    margin: 0;
    box-sizing: border-box;
}
:root {
    --light-theme: #ffe6f9;
    --big-title: #1a1a1a;
    --small-title: #1a1a1a;
    --emphasized-text: #990073;
    --white-text: #fff;
    --light-text: #e6e6e6;
    --dark-text: #262626;
    --btn-bg: #7C007C;
    --btn-bg-hover: #990073;
    --white-bg: #fff;
    --light-bg: #f2f2f2;
    --light-theme-bg: #ffe6f9;
    --dark-bg: #1a1a1a;
    --dark-bg-colored: #7C007C;
}
body {
    font-family: -apple-system, BlinkMacSystemFont, "Gilroy", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}
a {
    text-decoration: none;
}
a[disabled] {
    pointer-events: none;
    color: gray !important; /* or any other disabled color */
    text-decoration: none;
}
.section-title-small {
    text-align: center;
}
.school-name {
    margin-bottom: 1rem;
    font-size: 14px;
    text-align: center;
    font-weight: 500;
}
.inline-block {
    display: inline-block;
}
.block {
    display: block;
}
.btn-style {
    outline: none;
    padding: 10px 20px;
    background-color: var(--btn-bg);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-text);
    cursor: pointer;
}

.btn-style:hover {
    background-color: var(--btn-bg-hover);
}

.btn-style1 {
    outline: none;
    padding: 10px 20px;
    background-color: var(--light-bg);
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--emphasized-text);
    cursor: pointer;
    border: 1px solid var(--btn-bg);
}

.btn-style1:hover {
    background-color: var(--btn-bg-hover);
    color: var(--white-text);
}

.btn-style2 {
    outline: none;
    padding: 15px 20px;
    background-color: var(--dark-bg);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-text);
    cursor: pointer;
    border: 1px solid var(--btn-bg);
}

.btn-style2:hover, .btn-next-prev:hover {
    background-color: black;
    color: var(--light-text);
}

.btn-style-cell {
    outline: none;
    padding: 3px 15px;
    background-color: var(--dark-bg-colored);
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-text);
    cursor: pointer;
    border: 1px solid var(--btn-bg);
}

.btn-style-cell:hover, .btn-next-prev:hover {
    background-color: black;
    color: var(--light-text);
}

.btn-next-prev {
    display: inline-block;
    outline: none;
    padding: 10px 20px;
    background-color: var(--dark-bg);
    border-radius: 10px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-text);
    cursor: pointer;
    border: 1px solid var(--btn-bg);
}
.dashboard-body {
    background-color: var(--light-bg);
}
.logo {
    /*display: block;*/
    /*margin: auto;*/
}
.logo img {
    width: 150px;
    display: block;
    margin: auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    height: 100%;
    align-items: center;
}
header {
    height: 80px;
    background-color: #fff;
    width: 100%;
    position: fixed;
    top: 0;
    left: 0;
    box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05);
    z-index: 3;
}
.logo-dashboard a img {
    width: 150px;
}
.profile a {
    color: #777;
    font-size: 15px;
}
.profile a {
    text-decoration: none;
}
.profile a span {
    color: tomato;
    font-size: 15px;
    padding-right: 5px;
}
.profile-details {
    font-size: 13px;
    font-weight: 600;
    margin-top: .5rem;
}
.container {
    width: 90%;
    margin: auto;
}

/* from bootstrap */
.p-1 {
    padding: .5rem;
}
.p-2 {
    padding: 1rem;
}
.pr-2 {
    padding-right: 1rem;
}
.pl-2 {
    padding-left: 1rem;
}
.p-3 {
    padding: 1.5rem;
}
.pr-3 {
    padding-right: 1.5rem;
}
.pl-3 {
    padding-left: 1.5rem;
}
.py-1 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}
.py-2 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}
.py-3 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}
.py-4 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
.px-1 {
    padding-left: 1rem;
    padding-right: 1rem;
}
.px-2 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}
.px-3 {
    padding-left: 2rem;
    padding-right: 2rem;
}
.px-4 {
    padding-left: 3rem;
    padding-right: 3rem;
}

.m-2 {
    margin: 1rem;
}
.mr-1,
.mx-1 {
    margin-right: 0.25rem !important;
}
.mr-2 {
    margin-right: 1rem;
}
.ml-2 {
    margin-left: 1rem;
}
.m-3 {
    margin: 1.5rem;
}
.mr-3 {
    margin-right: 1.5rem;
}
.ml-3 {
    margin-left: 1.5rem;
}
.my-1 {
    margin-top: 1rem;
    margin-bottom: 1rem;
}
.my-2 {
    margin-top: 1.5rem;
    margin-bottom: 1.5rem;
}
.my-3 {
    margin-top: 2rem;
    margin-bottom: 2rem;
}
.my-4 {
    margin-top: 3rem;
    margin-bottom: 3rem;
}
.mt-1 {
    margin-top: .7rem;
}
.mt-2 {
    margin-top: 1.5rem;
}
.mt-3 {
    margin-top: 2rem;
}
.mt-4 {
    margin-top: 3rem;
}
.mb-1 {
    margin-bottom: .7rem;
}
.mb-2 {
    margin-bottom: 1.5rem;
}
.img-fluid {
  max-width: 100%;
  height: auto;
}
.relative {
    position: relative;
}
.text-center {
    text-align: center;
}

.badge, .status {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }

.status {
  font-size: 14px;
}
  @media (prefers-reduced-motion: reduce) {
    .badge {
      transition: none; } }
  a.badge:hover, a.badge:focus {
    text-decoration: none; }
  .badge:empty {
    display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem; }

.badge-primary {
  color: #fff;
  background-color: #4755AB; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px; 
}

.row-free {
  display: flex;
  flex-wrap: wrap;
}
.login-half {
    width: 100%;
}
@media (max-width: 810px) {

}
.col-md-1,.col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-12 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
}
@media (min-width: 768px) {
    .col-md-1 {
        flex: 0 0 8.33333%;
        max-width: 8.33333%; }
    .col-md-2 {
        flex: 0 0 16.66666%;
        max-width: 16.66666%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
    .col-md-5 {
    flex: 0 0 41.6666%;
    max-width: 41.6666%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
    .col-md-7 {
    flex: 0 0 58.3333%;
    max-width: 58.3333%; }
    .col-md-8 {
    flex: 0 0 66.6666%;
    max-width: 66.6666%; }
    .col-md-9 {
    flex: 0 0 74.9999%;
    max-width: 74.9999%; }
    .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
.login-half {
    max-width: 50%;
}
}

.mx-auto {
  margin: auto;
}
.rounded-circle {
  border-radius: 50% !important; }
/* // from bootstrap */

.profile-dropdown {
    position: relative;
/*    background-color: black;*/
}

.profile-dropdown-content {
    /*margin-top: 15px;*/
    display: none;
    transition: all 1s ease;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #fff;
    /*background-clip: border-box;*/
    /* border: 1px solid rgba(0, 0, 0, 0.125); */
    border-radius: 0.25rem;
    box-shadow: 2px 5px 7px 0 rgba(31, 45, 61, 0.2);
    /*width: 100%;*/
}
.profile-dropdown-content ul {
    width: 100%;
    background-color: red;
}
.profile-dropdown-content li {
    list-style: none;
    padding: 10px;
    border-top: 1px solid #ddd;
    width: 100%;
    background-color: blue;
}
.profile-dropdown-content li a {
    color: var(--dark-text);
    display: block;
    font-size: 13px;
}
.profile-dropdown-content li a span {
 display: inline;
 /*float: left;*/
 margin-right: 15px;
}
.profile-dropdown:hover .profile-dropdown-content {
    display: block;
}

.dropdown {
    /*position: relative;*/
}
.dropdown-content {
    /*margin-top: 15px;*/
    display: none;
    transition: all 1s ease;
    /*position: absolute;*/
    background-color: #f9f9f9;;
    /*top: 50px;*/
    /*width: 100%;*/
}
/*.dropdown:hover .dropdown-content {
    display: block;
}*/
.dropdown .dropdown-content a {
    /*background-color: #fff;*/
    padding: 15px 15px 15px 25px;
    margin-left: 0;
    border-bottom: 1px solid #ddd;
}
.dropdown .dropdown-content a 
.dropdown.active .dropdown-content {
    display: block;
}

span.badge {
    font-size: 11px;
    font-weight: bold;
    color: #FFF;
    /*background: #ff6c5f;*/
    background: var(--dark-bg-colored);
    line-height: 15px;
    width: 20px;
    height: 20px;
    border-radius: 2em;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
    -o-border-radius: 2em;
    text-align: center;
    display: inline-block;
    position: absolute;
    top: 16%;
    padding: 2px 0 0;
    margin-bottom: 15px;
}

.sidebar-toggler {
    border: none;
    background-color: transparent;
    font-size: 25px;
    color: var(--dark-text);
    cursor: pointer;
    /*vertical-align: middle;*/
    margin-right: 10px;
}

.sidebar {
    position: fixed;
    z-index: 5;
    top: 100px;
    bottom: 20px;
    width: 250px;
    left: 20px;
    /* border: .5px solid var(--light-theme); */
    border-radius: 15px;
    /* height: 100%; */
    /* padding: 15px; */
    background-color: var(--white-bg);
    /* background-color: var(--dark-bg-colored); */
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.5s ease;
    overflow-y: auto;
    /*-ms-overflow-style: none;
    scrollbar-width: none;*/
}
.sidebar-list {
    margin-top: 20px;
    /* background-color: var(--white-bg); */
    padding-left: 0;
}
.table-of-content-list {
    padding-left: 0;
    margin: 0;
}
.sidebar-list li, .table-of-content-list li {
    /* border-bottom: 1px solid var(--emphasized-text); */
    list-style: none;
    margin-left: 0;
    /*border-radius: 0 25px 25px 0;*/
    border-bottom: 1px solid #eee;
}

.sidebar-list li span i, .table-of-content-list li span i {
    float: right;
}
.sidebar-list li a, .sidebar-list li span, .table-of-content-list li span, .table-of-content-list li a {
    padding: 15px 15px 15px 15px;
    color: #666;
    display: inline-block;
    width: 100%;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
}
.table-of-content-list li span, .table-of-content-list li a {
    padding: 10px;
}
.table-of-content-list .dropdown .dropdown-content a {
    padding: 10px;
}
.sidebar-list li span {
    border-radius: 25px 25px 0 0;
}
.sidebar-list li a:hover {
    /*color: var(--dark-text);*/
    color: var(--light-text);
    border-radius: 0 25px 25px 0;
    /*background-color: var(--light-theme);*/
    background-color: var(--dark-bg-colored);
}
.sidebar-list li span:hover {
    color: var(--light-text);
    border-radius: 0 25px 25px 0;
    /*background-color: var(--light-theme);*/
    background-color: var(--dark-bg-colored);
}


.active-link {
    border-radius: 0 25px 25px 0;
    background-color: var(--light-theme);
    /*background-color: var(--dark-bg-colored);*/
    color: white;
}
.active-drop {
    /*border-radius: 0 25px 25px 0;*/
    /*background-color: var(--light-theme);*/
    /*background-color: var(--dark-bg-colored);*/
}

.right-section {
    box-sizing: border-box;
    margin-top: 20px;
    width: calc(100% - 270px);
    padding: 80px 30px;
    margin-left: 270px;
    transition: all 0.5s ease;
}
body.active .sidebar {
    left: -250px;
}
body.active .right-section {
    width: 100%;
    margin-left: 0px;
}
@media (max-width: 1080px) {
    .sidebar {
        left: -250px;
    }
    .right-section {
        width: 100%;
        margin-left: 0;
    }
    body.active .sidebar {
        left: 0px;
    }
    body.active .right-section {
        width: 100%;
        margin-left: 0;
    }
}
@media (max-width: 430px) {
    .desktop-only {
        display: none;
    }
    .flex-m-60, .flex-m-50, .flex-m-40, .flex-m-30, .flex-m-25, .flex-m-20 {
        width: 100%;
    }
    .sidebar {
        top: 80px;
        border-radius: 0 15px 15px 0;
    }
    
    .container {
        width: 95%;
    }
    .right-section {
        padding: 80px 10px;
    }
    
}
/* adding sidebar */

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    /* border: 1px solid rgba(0, 0, 0, 0.125); */
    border-radius: 0.25rem;
    box-shadow: 2px 5px 7px 0 rgba(31, 45, 61, 0.2);
}
.card-header {
    position: relative;
    padding: 0 15px;
    height: 70px;
    line-height: 70px;
    border-bottom: 1px solid var(--light-bg);
}
.card-body {
    padding: 15px;
}

.card-footer {
    /*display: grid;*/
    /*position: relative;*/
    border-top: 1px solid var(--light-text);
    padding: 0 15px;
    height: 50px;
    line-height: 50px;
    background: var(--white-bg);
    text-align: center;
}
.card-footer p {
    color: var(--dark-text);
    /* margin: auto 0; */
    font-size: 14px;
}
.widget {
    background-color: var(--dark-bg-colored);
    text-align: center;
    padding-top: 30px;
    padding-bottom: 30px;
    margin-bottom: 1rem;
}
.widget h1 {
  font-size: 1.2rem;
  color: var(--light-text);
  text-align: center;
}
.widget p {
  font-size: 16px;
  margin-top: .5em;
  color: #fff;
  text-align: center;
}
.white-round {
    background-color: var(--white-bg);
    border-radius: 5px;
}


/* Table */
table {
    width: 100%;
    white-space: nowrap;
}
.table {
    border-radius: 15px;
    border-top: 2px solid var(--btn-bg-hover);
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    width: 100%;
    padding: 1rem;
    margin-bottom: 1rem;
    color: #212529;
    /*border: 2px solid var(--border-lighter);*/
    border-collapse: collapse;
    background: var(--bg-lighter);
}

.table th,
.table td {
    text-align: left;
    padding: 0.75rem;
    vertical-align: top;
    border: none;
}
.table td {
    border-top: 1px solid var(--light-text);
}
.table thead {
    border-radius: 10px;
    background-color: var(--light-theme);
}
.table thead th, .table thead th label {
    color: #a64dff;
    font-weight: 600;
    vertical-align: bottom;
    /*border-bottom: 2px solid var(--border-lighter);*/
}
.table thead th label {
    padding: 0px;
    margin: 0px;
}
/*.table tbody+tbody {
    border-top: 2px solid var(--border-lighter);
}*/


.table th {
    color: var(--dark-text);
    font-size: 13px;
}

.table td {
    color: var(--font-semidark);
    font-size: 13px;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(var(--table-striped-bg), 0.05);
}
/*.table-dark.table-striped tbody tr:nth-of-type(odd) {
  background-color: rgba(255, 255, 255, 0.05);
}*/
@media (max-width: 430px) {
    .table {
        padding: 5px;
    }

}
/* // table */

/* forms */
.sign-image {
    position: fixed;
    width: 50%;
    height: 100%;
    right: 0;
    background: linear-gradient(to top right, var(--dark-bg-colored), var(--light-theme-bg));
    overflow: hidden;
}
.login-form {
    max-width: 400px;
    /*position: absolute;*/
    /*top: 10%;*/
    /*transform: translate(0, -50%);*/
    margin-top: 4rem;
}
.login-form, .transaction-form {
    background-color: var(--light-bg);
    border-radius: 10px;
    padding: 1.5rem;
    /*padding-bottom: 90px;*/
}
.transaction-form {
    background-color: var(--white-bg);
}
@media (max-width: 430px){
    .transaction-form {
        padding: 1rem .6rem;
    }
}
.login-form input, .login-form select, .login-form textarea, .transaction-form input, .transaction-form select, .transaction-form textarea, .type-message textarea {
    resize: none;
    display: inline;
    width: 100%;
    padding: 15px 15px 15px 15px;
    outline: none;
    border: 1px solid var(--light-text);
    border-radius: 5px;
    font-size: 13px;
    background-color: var(--white-bg);
}
.small-side-padding-input input {
    padding: 8px 3px !important;
}
.small-side-padding-input td {
    padding: 7px 3px !important;
}

option {
    padding: 15px;
}

.login-form input, .login-form select, .login-form textarea {
    padding: 20px 15px;
    border: none;
    border-bottom: 3px solid var(--dark-bg-colored);
}

.type-message textarea {
    resize: none;
    width: block;
    width: calc(100% - 60px);
    margin-left: 10px;
    /* margin-right: 20px; */

}

textarea:focus, input:focus {
    border: 1px solid var(--emphasized-text);
}
label {
    font-size: 13px;
    display: block;
    margin: 20px 0 10px;
    color: var(--dark-bg-colored);
    font-weight: 600;
}
.login-form a {
    /*display: inline-block;*/
    font-size: 14px;
    padding: 5px;
    width: 100%;
    text-align: center;
}
.ordinary-link {
    text-align: left;
    color: var(--dark-text);
    padding: 0px;
    font-size: 14px;
}
.login-form button, .transaction-form button {
    width: 100%;
    padding: 15px;
}

input[type="radio"], input[type="checkbox"] {
    padding: 0;
    width: 15px;
    display: inline;
    cursor: pointer;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

.checkbox-label {
    display: inline;
    margin-left: 10px;
    margin-right: 20px;
    cursor: pointer;
    color: var(--dark-text);
}

.checkbox-label a {
    color: var(--icon-theme);
    font-style: italic;
}


.label-value, .two-fields, .three-fields, .four-fields {
    display: flex;
    justify-content: space-between;
}

.two-fields div {
    width: 49%;
}
.three-fields div {
    width: 32.5%;
}
.four-fields div {
    width: 24.5%;
}
.label-value .country {
    display: inline;
    width: 80px;
    background-color: var(--light-bg);
    border-right: none;
    border-radius: 5px 0 0 5px;
}

.label-value .value {
    display: inline;
    width: calc(100% - 80px);
    border-radius: 0 5px 5px 0px;
}

fieldset {
    margin: 0;
    border: none;
    outline: none;
    padding: none;
}
.add-item {
    display: inline-block;
    margin: 15px 0;
    font-size: 13px;
    font-weight: 500;
    color: white;
    text-transform: uppercase;
    padding: 10px 20px;
    background-color: var(--dark-bg);
}
.add-item:hover {
    color: var(--emphasized-text);
}
#items p {
    font-size: 13px;
}
#items .remove-item {
    font-size: 13px;
    color: tomato;
    float: right;
}

.input-icon {
    display: inline;
    margin-left: -40px;
    cursor: pointer;
    color: var(--btn-bg);
}

.message-input-icon {
    /* height: 20px; */
    /* line-height: 40px; */
    /* margin-left: 0px; */
    /* margin-top: 20px; */
    position: absolute;
    left: calc(100% - 50px);
    cursor: pointer;
    color: var(--btn-bg);
    top: 50%;
    transform: translate(0, -50%);
}

.input-icon-left {
    margin-left: calc(10px - 100%);
    /* cursor: pointer; */
    color: var(--btn-bg);
}

.transaction-form .for-icon-left {
    padding-left: 60px;
}
.verify {
    cursor: pointer;
    display: inline-block;
    margin-top: 5px;
    padding: 5px;
    border-radius: 15px;
    font-size: 12px;
    color: var(--emphasized-text);
    background-color: var(--light-bg);
}
form .invalid {
    border-color: red;
}
form .valid {
    border-color: var(--light-text);
}
/* // forms */

.se-pre-con {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/Preloader_11.gif) center no-repeat rgba(255, 255, 255, 0.80);
}

.loader-success {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: url(../images/success.gif) center no-repeat rgba(255, 255, 255, 0.80);
}

.invalid {
  /*background-color: #ffdddd;*/
  /*border-color: red;*/
  border-color: #dc3545;
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
}
.valid {
  /*background-color: #ffdddd;*/
  border-color: transparent;
}
.print-container {
    padding: 20px;
}
.print-inner {
    border: 2px solid #888;
    border-radius: 15px;
    padding: 30px;
}
.print-header {
    text-align: center;
}
.print-header .name {
    font-size: 15px;
    margin-top: 10px;
}
.print-header .sub-name {
    font-size: 13px;
    margin-top: 5px;
}

.print-header .title {
    font-size: 12px;
    margin-top: 10px;
    font-weight: bold;
    text-decoration: underline;
}
.bio-data {
    font-size: 13px;
}
@media (max-width: 480px) {
    .bio-data {
        font-size: 8px;
        overflow-x: auto;
    }
    .print-container {
        padding: 10px;
    }
    .print-inner {
        border: 2px solid #888;
        border-radius: 15px;
        padding: 10px;
    }
}
.base-signature {
    width: 33.33333%;
}
.base-signature p {
    font-size: 12px;
    margin: 10px;
    padding-top: 10px;
    text-align: center;
    border-top: 2px solid #000;
}
.center-box {
    border: 1px solid #000;
    width: 200px;
    height: 80px;
    line-height: 80px;
    text-align: center;
}
.print-table td {
    padding: .1rem;
}
.broadsheet-table {
    border-collapse: collapse;
}
.print-broadsheet-table td {
    border: 1px solid var(--light-text);
    padding-left: .1rem;
    padding-right: .1rem;
    text-align: center;
}
.small-pad-cell td {
    padding-left: 0px;
    padding-right: 0px;
    /*width: 100%;*/
    text-align: center;
}
.small-pad-cell td input {
    padding-left: 5px;
    padding-right: 5px;
    width: 100%;
}
/* autocomplete css */
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    /*position the autocomplete items to be the same width as the container:*/
    top: 100%;
    left: 0;
    right: 0;
    max-height: 300px;
    overflow-y: auto;
    background-color: var(--white-bg);
}

.autocomplete-items div {
    /* height: 40px; */
    line-height: 40px;
    padding-left: 10px;
    cursor: pointer;
    background-color: #fff; 
    border-bottom: 1px solid #d4d4d4; 
}

/*when hovering an item:*/
.autocomplete-items div:hover {
    background-color: #e9e9e9; 
}

.autocomplete-items a {
    display: block;
    line-height: 40px;
    padding-left: 10px;
    border-bottom: 1px solid #d4d4d4;
    color: var(--dark-text);
    font-size: 14px;
}

.autocomplete-items a:hover {
    color: var(--emphasized-text);
}

/*when navigating through the items using the arrow keys:*/
.autocomplete-active {
    background-color: DodgerBlue !important; 
    color: #ffffff; 
}
/* // autocomplete css */

.section-icon {
    width: 15px;
}
.flex-pack {
    display: flex;
    flex-wrap: wrap;
    /* justify-content: space-between; */
    column-gap: 1%;
}
.notice-action {
    width: 300px;
    padding: 15px;
    border-bottom: 2px solid var(--btn-bg-hover);
    background-color: rgba(255, 255, 2255, 0.9);
    border-radius: 10px;
    margin-bottom: 1rem;
}
.notice-action img {
    transform: translate(0, -50%);
}
.notice-action .notice-details {
    display: inline-block;
    width: calc(100% - 45px);
    margin-left: 15px;
    line-height: .5px;
}
.notice-details p {
    font-size: 13px;
    line-height: 16px;
}

/* quick links*/
.quick-link {
    display: block;
    text-align: center;
}
.quick-link span {
    /* display: inline-block; */
    /* height: 80px; */
    /* width: 80px; */
    padding: 12px 15px;
    color: var(--icon-theme);
    font-size: 38px;
    /*line-height: 38px;*/
    background-color: #fff;
    border-radius: 50%;
}

.quick-link img {
    height: 65px;
    width: 65px;
    padding: 15px;
    background-color: #fff;
    border-radius: 50%;
}

.quick-link p {
    margin-top: 5px;
    color: var(--font-lighter);
    font-size: 14px;
    font-weight: 500;
}
/* alert */

.alert {
    /*display: none;*/
    position: fixed;
    top: 0;
    right: -350px;
/*    min-width: 350px;*/
    width: 20px;
    border-radius: 4px;
    border: 1px solid #ccc;
    min-height: 50px;
    /*line-height: 50px;*/
    background: white;
    color: var(--dark-text);
    font-weight: bold;
    font-size: 14px;
    text-align: center;
    z-index: 2000;
    box-shadow: 0 6px 6px 0 rgba(0, 0, 0, 0.05);
    /*transition: width 2s ease;*/
    transition: all 0.5s ease;

}
.alert .close-alert {
/*    padding: 8px;*/
    font-size: 20px;
/*    border-radius: 15px;*/
    cursor: pointer;
}
.alert-flex {
    display: flex;
    height: inherit;
}
.alert-flex div:first-child {
    width: calc(100% - 50px);
    padding: 10px;
}
.alert-flex div:last-child {
    width: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    height: inherit;
}
.alert-flex div:last-child span {
    color: black;
    cursor: pointer;
}

/*.alert-failed {
    background-color: #ffcccc;
}

.alert-success {
    background-color: #99ffbb;
}
.alert-info {
    background: #b3e0ff;
}*/


.alert-success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
/*    padding: 15px;*/
/*    border-radius: 5px;*/
}

.alert-error, .alert-failed {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
/*    padding: 15px;*/
/*    border-radius: 5px;*/
}

.alert-warning {
    background-color: #fff3cd;
    color: #856404;
    border: 1px solid #ffeeba;
/*    padding: 15px;*/
/*    border-radius: 5px;*/
}

.alert-info {
    background-color: #d1ecf1;
    color: #0c5460;
    border: 1px solid #bee5eb;
/*    padding: 15px;*/
/*    border-radius: 5px;*/
}

/* // alert */

/* Modal  */
.modal {
  display: none;
  position: fixed;
  z-index: 1000;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  /*padding: 15px;*/
  overflow-y: auto;
  overflow-x: hidden;
  outline: none;
  background: rgba(0,0,0,0.5);
  /* background: rgba(var(--modal-bg), 0.4); */
  /*opacity: 0.4;*/
    transition: transform 0.3s ease-out;
}

.modal-content {
    /* line-height: 100%; */
  max-width: 500px;
  margin: auto;
  border-radius: 0.3rem;

}
.modal-content-lg {
    /* line-height: 100%; */
  max-width: 700px;
  margin: auto;
  border-radius: 0.3rem;

}
.modal-content-xlg {
    /* line-height: 100%; */
  max-width: 1080px;
  margin: auto;
  border-radius: 0.3rem;

}
.modal-small {
    /* line-height: 100%; */
  max-width: 380px;

}
.modal-body {

}

@media (max-width: 430px) {
    .modal-content {
        margin-right: 20px;
        margin-left: 20px;
    }

}

.modal-dialog-centered {
    display: flex;
    /* align-items: center; */
    min-height: calc(100% - 1rem);
    flex-direction: column;
    justify-content: center;
}
.modal .close {
  float: right;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
    /* background-color: var(--light-bg); */
  color: var(--dark-text);
    /* width: 40px; */
    /* height: 40px; */
    /* line-height: 70px; */
    border-radius: 25px;
    padding: 10px;
}

.modal .close:hover {
  color: #000;
}

/* // Modal */

/* toggle switch */

.switch {
  position: relative;
  display: inline-block;
  width: 48px;
  height: 26px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 4px;
  bottom: 3px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(20px);
  -ms-transform: translateX(20px);
  transform: translateX(20px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 28px;
}

.slider.round:before {
  border-radius: 50%;
}

/*.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

.switch input { 
  opacity: 0;
  width: 0;
  height: 0;
}

.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* // toggle switch */
/* support */

.msg-back {
    position: fixed;
    top: 300px;
    right: 25px;
    z-index: 10;
}
.message-container {
    background-color: transparent;
    /* height: 100vh; */
    overflow-y: auto;
    padding-bottom: 100px;
}
.message {
    color: var(--dark-text);
    font-size: 15px;
    max-width: 80%;
    margin-bottom: 10px;
    min-width: 100px;
    padding: 5px 15px;
    border-radius: 10px;
    box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.05);
    white-space: pre-wrap;
}
.sent {
    float: right;
    clear: both;
    background-color: rgb(198, 248, 198);
}
.received {
    float: left;
    clear: both;
    background-color: white;
}
.message-datetime {
    /* margin-left: 15px; */
    padding-top: 5px;
    font-weight: bold;
    float: inherit;
    font-size: 10px;
}
.type-message {
    padding: 10px;
    background-color: var(--white-bg);
    position: fixed;
    /* width: calc(100%); */
    bottom: 0px;
    z-index: 2;
    border-radius: 15px;
}
/* // support */

/* was faq */
.special-dropdown-list .transition,
.special-dropdown-list p,
.special-dropdown-list ul li i:before,
.special-dropdown-list ul li i:after {
  transition: all 0.25s ease-in-out; }

.special-dropdown-list .flipIn,
.special-dropdown-list h1,
.special-dropdown-list ul li {
  -webkit-animation: flipdown 0.5s ease both;
  animation: flipdown 0.5s ease both; }

.special-dropdown-list .no-select,
.special-dropdown-list h2 {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; }

.special-dropdown-list h2 {
  width: 100%;
  text-align: left;
  padding: 0px;
  font-weight: 700;
  font-size: 18px;
  color: var(--heading-color);
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
  cursor: pointer;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  margin: 0; }

.special-dropdown-list p {
  color: rgba(48, 69, 92, 0.8);
  font-size: 16px;
  line-height: 26px;
  position: relative;
  overflow: hidden;
  max-height: 800px;
  opacity: 1;
  transform: translate(0, 0);
  margin-top: 14px;
  z-index: 2; }

.special-dropdown-list ul {
  list-style: none;
  padding: 0;
  max-width: 750px;
  margin: 0 auto; }

.special-dropdown-list ul li {
  position: relative;
  padding: 10px 40px 10px 15px;
  border: 1px solid #e0e0e0;
  margin: 0 0 20px 0;
  border-radius: 4px;
  padding-top: 20px;
  padding-bottom: 20px; }

.special-dropdown-list .badge {
  display: inline-block;
  width: 20px;
  height: 20px;
  line-height: 20px;
  float: left;
  border-radius: 100px;
  text-align: center;
  color: #fff;
  font-size: 12px;
  margin-right: 20px;
  padding: 0; }

.special-dropdown-list ul li:nth-of-type(1) {
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s; }

.special-dropdown-list ul li:nth-of-type(2) {
  -webkit-animation-delay: 0.75s;
  animation-delay: 0.75s; }

.special-dropdown-list ul li:nth-of-type(3) {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.special-dropdown-list ul li:nth-of-type(4) {
  -webkit-animation-delay: 1.25s;
  animation-delay: 1.25s; }

.special-dropdown-list ul li:nth-of-type(5) {
  -webkit-animation-delay: 1.50s;
  animation-delay: 1.50s; }

.special-dropdown-list ul li:nth-of-type(6) {
  -webkit-animation-delay: 1.75s;
  animation-delay: 1.75s; }

.special-dropdown-list ul li i {
  position: absolute;
  transform: translate(-6px, 0);
  margin-top: 16px;
  right: 15px;
  top: 10px; }

.special-dropdown-list ul li i:before,
.special-dropdown-list ul li i:after {
  content: "";
  position: absolute;
  background-color: var(--para-color);
  width: 3px;
  height: 9px; }

.special-dropdown-list ul li i:before {
  transform: translate(-2px, 0) rotate(45deg); }

.special-dropdown-list ul li i:after {
  transform: translate(2px, 0) rotate(-45deg); }

.special-dropdown-list ul li input[type=checkbox] {
  position: absolute;
  cursor: pointer;
  width: 100%;
  height: 100%;
  z-index: 1;
  opacity: 0;
  top: 0;
  left: 0;
  -webkit-appearance: none; }

.special-dropdown-list ul li input[type=checkbox]:checked ~ p {
  margin-top: 0;
  max-height: 0;
  opacity: 0;
  transform: translate(0, 50%); }

.special-dropdown-list ul li input[type=checkbox]:checked ~ i:before {
  transform: translate(2px, 0) rotate(45deg); }

.special-dropdown-list ul li input[type=checkbox]:checked ~ i:after {
  transform: translate(-2px, 0) rotate(-45deg); }

@media screen and (max-width: 480px) {
  .special-dropdown-list h2 {
    font-size: 18px;
    line-height: 30px; } }


/* study page */
.study-row {
    display: flex;
}
.video-display {
    padding-right: 15px;
    padding-left: 15px;
    /*flex: 0 0 66.6666%;*/
    /*max-width: 66.6666%;*/
    max-width: 700px;

}
.video-display p {
    font-size: 14px;
}
.video-table-of-content {
    padding-right: 15px;
    padding-left: 15px;
    flex: 0 0 33.33333%;
    max-width: 33.33333%;
}
.table-of-content-list {

}
@media (max-width: 430px) {
    .study-row {
        display: block;
    }
    .video-display {
        max-width: 100%;
        position: fixed;
        top: 90px;
        left: 0;
        right: 0;
    }
    .video-display p {
        font-size: 12px;
    }
    .video-table-of-content {
        margin-top: 270px;
        max-width: 100%;
    }

}
.cbt-timer {
    width: 300px;
    height: 50px;
    border-radius: 25px 0 0 25px;
    line-height: 50px;
    text-align: center;
    font-size: 22px;
    font-weight: bold;
    background-color: #33cc33;
    /*background-color: var(--dark-bg-colored);*/
    color: white;
    position: fixed;
    top: 90px;
    right: 0px;
    z-index: 20;
}
.pwd-visibility {
  position: absolute;
  right: 16px;
  /*top: calc(50% - 4px);*/
  top: calc(50% - 25%);
  cursor: pointer;
  padding: 4px;
}
.pwd-visibility i {
    color: #9900cc;
}


/*badge*/


.badge {
  display: inline-block;
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
  @media (prefers-reduced-motion: reduce) {
    .badge {
      transition: none; } }
  a.badge:hover, a.badge:focus {
    text-decoration: none; }
  .badge:empty {
    display: none; }

.btn .badge {
  position: relative;
  top: -1px; }

.badge-pill {
  padding-right: 0.6em;
  padding-left: 0.6em;
  border-radius: 10rem; }

.badge-primary {
  color: #fff;
  background-color: #4755AB; }
  a.badge-primary:hover, a.badge-primary:focus {
    color: #fff;
    background-color: #384387; }
  a.badge-primary:focus, a.badge-primary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(71, 85, 171, 0.5); }

.badge-secondary {
  color: #fff;
  background-color: #B162AC; }
  a.badge-secondary:hover, a.badge-secondary:focus {
    color: #fff;
    background-color: #964a91; }
  a.badge-secondary:focus, a.badge-secondary.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(177, 98, 172, 0.5); }

.badge-success {
  color: #fff;
  background-color: #03c895; }
  a.badge-success:hover, a.badge-success:focus {
    color: #fff;
    background-color: #029670; }
  a.badge-success:focus, a.badge-success.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(3, 200, 149, 0.5); }

.badge-info {
  color: #fff;
  background-color: #17a2b8; }
  a.badge-info:hover, a.badge-info:focus {
    color: #fff;
    background-color: #117a8b; }
  a.badge-info:focus, a.badge-info.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(23, 162, 184, 0.5); }

.badge-warning {
  color: #212529;
  background-color: #ffc107; }
  a.badge-warning:hover, a.badge-warning:focus {
    color: #212529;
    background-color: #d39e00; }
  a.badge-warning:focus, a.badge-warning.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 193, 7, 0.5); }

.badge-danger {
  color: #fff;
  background-color: #ff4f81; }
  a.badge-danger:hover, a.badge-danger:focus {
    color: #fff;
    background-color: #ff1c5c; }
  a.badge-danger:focus, a.badge-danger.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(255, 79, 129, 0.5); }

.badge-light {
  color: #212529;
  background-color: #f8f9fa; }
  a.badge-light:hover, a.badge-light:focus {
    color: #212529;
    background-color: #dae0e5; }
  a.badge-light:focus, a.badge-light.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(248, 249, 250, 0.5); }

.badge-dark {
  color: #fff;
  background-color: #343a40; }
  a.badge-dark:hover, a.badge-dark:focus {
    color: #fff;
    background-color: #1d2124; }
  a.badge-dark:focus, a.badge-dark.focus {
    outline: 0;
    box-shadow: 0 0 0 0.2rem rgba(52, 58, 64, 0.5); }


/* store */
.feature-title {
    font-size: 18px;
    margin-bottom: 20px;
}
.view-more {
    font-size: 14px;
    font-weight: 500;
    color: var(--dark-text);
    float: right;
}
.store-slide-feature {
    overflow-x: auto;
    white-space: nowrap;
    -ms-overflow-style: none;
    scrollbar-width: none;
    position: relative;
}
.store-slide-feature .slide-item {
    width: 250px;
    margin-right: 15px;
    display: inline-block;
}
.store-switch-slide-feature {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.store-slide-feature::-webkit-scrollbar  {
    display: none;
}

.store-item {
    position: relative;
}
.store-switch-slide-feature .slide-item {
    margin-bottom: 1.5rem;
    width: 24%;
}
.prev, .next {
    color: var(--dark-text);
    z-index: 1;
    font-size: 28px;
    padding: 10px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
    border: none;
    cursor: pointer;
}
.prev {
    left: 0;
}
.next {
    right: 0;
}
.ss {
    display: none;
}
.store-item a {
    color: black;
}
.store img {
    border-radius: 10px;
    width: 100%;
}
.store-promo {
    height: 30px;
    line-height: 30px;
    position: absolute;
    top: 5px;
    left: 5px;
    background-color: var(--light-bg);
    border-radius: 10px;
}
.store-promo .promo {
    font-size: 12px;
    font-weight: 500;
    margin-left: 10px;
    padding-right: 10px;
}
.store-promo button {
    font-size: 10px;
    font-weight: 600;
    /* margin-left: 10px; */
    /* padding-right: 10px; */
    border: none;
    background: transparent;
    cursor: pointer;
}

/* // store */
/* currency picker */
.currency-picker {
    border: none;
    background-color: #eee;
    font-size: 14px;
    border-radius: 8px;
    margin-right: 10px;
    line-height: 80px;
}
.currency-picker:hover {
    color: var(--emphasized-text);
}
/* currency picker */
/* item */
.products {
    background-color: white;
    border-radius: 10px;
    padding: 10px;
}
.cart-btn {
    border: none;
    outline: none;
    padding: 10px 20px;
    background-color: orange;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: var(--white-text);
    cursor: pointer;
}
.item-info-product h4 a {
        font-size: 12px;
    }
.feature-card-body .item-info-product h4 a {
  font-size: 16px;
}
.item-info-product {
    padding: 5px;
}

.item-info-product {
    padding: 5px;
}

.item-info-product h4 a {
    /*color: var(--heading-color);*/
    color: #777;
    font-size: 12px;
    font-weight: 500;
    line-height: 0.1;
}
.clamp-box {
    overflow: hidden;
}
.clamp-box-list {
    height: 40px;
    overflow: hidden;
}
.line-clamp-1 {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
}

.line-clamp-2 {
  font-size: 12px;
  color: #666;
  word-spacing: 2px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
}
.feature-card-body .item-info-product h4 a {
    color: var(--heading-color);
    font-size: 14px;
    font-weight: 400;
    /*line-height: 0.1;*/
}

.feature-card-body .item-info-product .special h4 a {
    font-size: 6px;
}

.feature-card-body .item-info-product h4 {
    line-height: 1;
}

.item-info-product h4 {
    line-height: .8;
}

.item-info-product h4 a:hover {
    color: var(--primary-color);
}

.info-product-price {
    color: black;
    /*margin-top: 5px;*/
}

span.item_price {
    font-size: 14px;
    color: var(--heading-color);
    font-weight: 600;
}

.info-product-price del {
    font-weight: 600;
    margin-left: 10px;
    font-size: 12px;
    color: var(--font-color);
}

.wish-list-abs {
    position: absolute;
    top: 10px;
    right: 10px;
    padding: 10px;
    border-radius: 50%;
    color: var(--emphasized-text);
    background-color: var(--light-bg);
    cursor: pointer;
}
.wish-list {
    
    padding: 10px;
    border-radius: 50%;
    color: var(--emphasized-text);
    background-color: var(--light-bg);
    cursor: pointer;
}

.cart-item {
    display: flex;
    padding: 10px;
/*    margin-right: -10px;*/
/*    margin-left: -10px;*/
    border-radius: 10px;
}
.cart-left {
    flex: 0 0 20.00%;
    max-width: 20%;
/*    padding-left: 10px;*/
/*    padding-right: 10px;*/
}
.cart-right {
    flex: 0 0 80.00%;
    max-width: 80%;
    padding-left: 10px;
/*    padding-right: 10px;*/
}
.cart-item-image {
/*    padding: 10px;*/
}
.promo-special {
    background-color: var(--dark-bg-colored);
    color: var(--white-text);
    padding: 4px 15px;
    margin-right: 5px;
    font-size: 12px;
    border-radius: 5px;
}
.cart-item-name {
    font-size: 16px;
    color: #555;
    font-weight: 600;
}
.cart-item-price {
    margin-bottom: 10px;
    font-weight: 600;
}
.price-del {
    font-size: 12px;
    color: #777;
}
.cart-item-quantity {
    display: inline;
    margin-right: 20px;
}
.increase-quantity-btn, .decrease-quantity-btn {
    padding: 10px;
    color: var(--emphasized-text);
    color: black;
    font-weight: bold;
    background-color: var(--light-bg);
    cursor: pointer;
}
.remove-cart-item {
    padding: 10px;
    color: tomato;
    background-color: var(--light-bg);
    cursor: pointer;
}
.cart-quantity-value {
    padding: 10px;
}
.cart-border-bottom {
    border-bottom: 2px solid #eee;
}
.cart-border-top {
    border-top: 2px solid #eee;
}
.cart-item-total {
    position: sticky;
    top: 80px;
    padding: 10px;
    border-radius: 10px;

}
.cart-item-total p, .cart-item-total h3 {
    margin-bottom: 10px;
}
.add-to-cart-btn, .image-preview-btn {
    max-width: 150px;
    display: inline;
/*    margin: auto;*/
    text-align: center;
    border: none;
    outline: none;
    padding: 10px 10px;
    background-color: orangered;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-text);
    cursor: pointer;
}
.add-to-cart-btn:hover {
    background-color: tomato;
}
.variation-details td {
    font-size: 13px;
    padding: 7px 8px;
}
.variation-details .add-to-cart-btn {
    font-weight: 500;
/*    background-color: #444;*/
    display: block;
}
.checkout-btn {
    max-width: 200px;
    display: block;
    margin: auto;
    text-align: center;
/*    vertical-align: bottom;*/
    border: none;
    outline: none;
    padding: 10px 20px;
    background-color: orangered;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-text);
    cursor: pointer;
}
.order-btn {
/*    max-width: 200px;*/
    display: inline-block;
/*    margin: auto;*/
    text-align: center;
/*    vertical-align: bottom;*/
    border: none;
    outline: none;
    padding: 5px 10px;
    margin-left: 10px;
    background-color: orangered;
    border-radius: 25px;
    font-size: 12px;
    font-weight: 600;
    color: var(--white-text);
    cursor: pointer;
}
.cart-address, .cart-shipping-fee {
    font-size: 14px;
    color: #555;
}
.address-action {
    text-align: right;
    float: right;
}
.image-preview-btn {
    display: inline-block;
}
@media (max-width: 450px) {
    .cart-item-name {
        font-weight: 500;
        font-size: 14px;
    }
    .cart-item-total {
        position: fixed;
        top: calc(100% - 100px);
        left: 0;
        width: 100%;
        height: 100px;
    }
    .cart-item-total p, .cart-item-total h3 {
        margin-bottom: 5px;

    }
    .checkout-btn, .cart-item-total p {
        display: inline;
        font-size: 12px;
    }
    .checkout-btn {
        display: inline-block;
        font-size: 12px;
        right: 0;
    }
}
/* // item */

/* price input fields */

.input-width-100 {
    min-width: 100px;
}
.input-width-200 {
    min-width: 200px;
}
.input-width-400 {
    min-width: 400px;
}

.image-preview-container {
  display: flex;
/*  flex-wrap: wrap;*/
  margin-right: -15px;
  margin-left: -15px; 
  overflow-x: auto;
}

/*product page*/
.nav-tabs {
  display: flex;
  justify-content: space-between;
  margin: o;
  padding: 0;
  margin-bottom: 20px;
}

.nav-tabs li {
  flex-grow: 1;
  text-align: center;
  list-style-type: none;

}

.nav-tabs li a {
  display: block;
  padding: 10px;
  color: #333;
  font-weight: bold;
  text-transform: uppercase;
  text-decoration: none;
  border-bottom: 2px solid transparent;
}
/*.nav-tabs li a: first-child{
    padding-left: 0px;
}*/
.nav-tabs li:first-child {
    padding-left: 0px;
    color: red;
}
.nav-tabs li a.active {
  border-bottom: 2px solid #000;
}
.tab-content .tab-pane {
  display: none;
  padding: 20px 0;
}

.tab-content .tab-pane.active {
  display: block;
}
.review:first-child {
    border: none;
    margin-top: 0px;
    padding-top: 0px;
}
.review {
    border-top: 1px solid #ccc;
    margin-top: 10px;
    padding-top: 10px;
}
.review p {
    margin-top: 5px;
}
.review .rating {
    font-size: 12px;
}
.rating {
    font-size: 12px;
}
.rating span {
    color: orangered;
}
.product-details .product-name {
    font-size: 18px;
    color: #444;

}
.product-details .promo-special {
    background-color: var(--dark-bg-colored);
    color: var(--white-text);
    padding: 4px 15px;
    margin-right: 5px;
    font-size: 14px;
    border-radius: 5px;
}

.load-more-btn {
    max-width: 200px;
    display: block;
    margin: 30px auto;
    text-align: center;
    border: none;
    outline: none;
    padding: 15px 20px;
    background-color: orangered;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    color: var(--white-text);
    cursor: pointer;
}

.load-more-btn:hover {
    background-color: darkorange;
}