/* ROOT */

:root {
  --header-height: 4rem;
  --font-semi: 600;
}
:root {
  --body-font: "Poppins", sans-serif;
  --h2-font-size: 2rem;
  --h3-font-size: 1.7rem;
  --h4-font-size: 1.4rem;
  --h5-font-size: 1.1rem;
  --big-font-size: 2.5rem;
  --normal-font-size: 0.938rem;
  --semi-normal-font-size: 0.738rem;
  --small-font-size: 0.638rem;
}
@media screen and (min-width: 960px) {
  :root {
    --h2-font-size: 2.45rem;
    --h3-font-size: 2.05rem;
    --h4-font-size: 1.65rem;
    --h5-font-size: 1.25rem;
    --big-font-size: 3rem;
    --normal-font-size: 1rem;
    --semi-normal-font-size: 0.8rem;
    --small-font-size: 0.7rem;
  }
}
:root {
  --mb-1: 0.5rem;
  --mb-2: 1rem;
  --mb-3: 1.5rem;
  --mb-4: 2rem;
  --mb-5: 2.5rem;
  --mb-6: 3rem;
}
:root {
  --z-back: -10;
  --z-normal: 1;
  --z-tooltip: 10;
  --z-fixed: 100;
}

/* BASE */

*,
::before,
::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0 0 0 0;
  font-family: var(--body-font);
  font-size: var(--normal-font-size);
  font-weight: 300;
  color: #222;
}
h1,
h2,
p {
  margin: 0;
}
p,
li {
  line-height: 25px;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
a {
  text-decoration: none;
}
label:not(.form-check-label):not(.custom-file-label) {
  font-weight: 500;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}

button {
  outline: none;
  border: 0;
  cursor: pointer;
  font-size: var(--normal-font-size);
}

input {
  font-size: var(--normal-font-size);
}

.btn__main {
  width: 100%;
  padding: 1rem;
  display: block;
  background-color: #fdc982;
  color: #030a17;
  transition: background-color 200ms;
  text-align: center;
  outline: none !important;
}

.btn__main:hover,
.btn__main:focus {
  background-color: #f4b177;
  color: #030a17;
}

.btn-ribsgold {
  background-color: #f4b177;
  color: #fff;
}

.btn-ribsgold.disabled,
.btn-ribsgold:disabled {
  color: rgb(24 37 64 / 32%);
}

.btn-ribsgold-dark {
  background-color: #182540;
  color: #fff;
}

.btn-ribsgold-dark:hover {
  color: #f4b177;
}

.btn-outline-ribsgold {
  border-color: #182540;
  color: #182540;
}

.btn-outline-ribsgold:hover {
  background: #182540ee;
  color: #fff;
}

.bg-ribsgold {
  outline: none;
  background-color: #182540 !important;
  color: #f4b177;
}

.bg-ribsgold-2 {
  background-color: #f4b177 !important;
  color: #182540;
}

span.err {
  color: #e53935;
  font-size: var(--semi-normal-font-size);
}

.custom-file-label {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  padding-right: 15%;
}

/* LOADER */
.mini-loader {
  margin: auto;
  border: 3px solid #ffffff;
  border-top: 3px solid #182540;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 768px) {
  .page-content {
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
}

.content-wrapper > .content {
  padding: 0 0.5rem 1rem;
}
/* .content-wrapper {
  height: 100vh;
} */

.page-loader {
  display: none;
  background-color: rgba(0, 0, 0, 0.65);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  pointer-events: all;
}

.loader-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
}

.loader,
.loader:before,
.loader:after {
  background: #927158;
  -webkit-animation: load1 1s infinite ease-in-out;
  animation: load1 1s infinite ease-in-out;
  width: 1em;
  height: 4em;
}
.loader {
  color: #927158;
  text-indent: -9999em;
  margin: 0 auto;
  position: relative;
  font-size: 11px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  position: absolute;
  top: 0;
  content: "";
}
.loader:before {
  left: -1.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 1.5em;
}
@-webkit-keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}
@keyframes load1 {
  0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 4em;
  }
  40% {
    box-shadow: 0 -2em;
    height: 5em;
  }
}

/* FORM */

.form__group {
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: var(--mb-3);
}

.form__group label {
  color: #927158;
  font-size: var(--semi-normal-font-size);
  font-weight: 300;
  margin-left: var(--mb-2);
  margin-bottom: var(--mb-1);
}

.form__group input {
  width: 100%;
  padding: 1rem;
  border: 1px solid #f4b177;
  color: #f4b177;
  background-color: transparent;
  outline: none;
}

/* PAGE BASIC */
html.menu-open {
  height: 100%;
}

html.menu-open body {
  position: fixed;
  width: 100%;
  top: 0px;
  overflow: hidden;
}

.page__content {
  display: flex;
}

.main__content {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  flex-grow: 1;
  min-height: calc(100vh - 68px);
  /* margin-left: -225px; */
  padding-left: 225px;
}

.form-control {
  font-weight: 300;
}

/* NAVBAR */
.navbar {
  background-color: #172440;
}
.navbar__brand {
  font-size: var(--h5-font-size);
  font-weight: 500;
  color: #f4b177;
}

.navbar__item img {
  width: 48px;
  height: 48px;
  border-radius: 2rem;
}

.sidenav {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  width: 225px;
  height: 100vh;
  z-index: 10;
}

.sidenav__navigation {
  padding-top: 69px;
  background-color: #172440;
  height: 100%;
  display: flex;
  flex-direction: column;
  height: 100%;
  flex-wrap: nowrap;
}

.sidenav__wrapper {
  overflow-y: scroll;
  flex-grow: 1;
}

.sidenav__menulist {
  padding-top: 35px;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
}

.sidenav__item {
  display: flex;
  align-items: center;
  padding: 1rem;
  position: relative;
  color: #f4b177;
  cursor: pointer;
}

.sidenav__item-icon {
  padding: 8px;
  margin-right: var(--mb-2);
  border-radius: 8px;
  background-color: #2a3854;
}

.nav-link .nav-link-icon {
  padding: 8px;
}

.nav-sidebar .nav-link > .right,
.nav-sidebar .nav-link > p > .right {
  top: 1.2rem;
}

.nav-sidebar .menu-open > .nav-link svg.right {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
}

/* CONTROL SIDEBAR */

.control-sidebar-content {
  position: relative;
}

.control-sidebar-overlay {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-color: rgba(0, 0, 0, 0.65);
  box-shadow: -2px 0 8px rgb(0 0 0 / 15%);
}

/* LOGIN */
.login {
  background: #172440;
  min-height: 100vh;
}

.login__form {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  max-width: 500px;
  margin: auto;
  padding: 55px 0;
}

.login__images {
  margin-bottom: var(--mb-4);
  border-radius: 4rem;
  overflow: hidden;
}

.login__form-content {
  width: 100%;
  background: transparent;
  display: flex;
  flex-flow: column nowrap;
  padding: 35px 30px;
  border-radius: 8px;
}

.login__form-header {
  text-align: center;
  margin-bottom: var(--mb-4);
  font-weight: 300;
}

.login__header-title {
  font-size: var(--h3-font-size);
  font-weight: 600;
  color: #f4b177;
  margin-bottom: var(--mb-2);
}
.login__header-subtitle {
  color: #927158;
}

.login__form .form__group span {
  height: 17px;
  margin-top: 5px;
}

/* DASHBOARD */

.dashboard__header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.dashboard__header-icon {
  margin-right: 10px;
}

.dashboard__header-title {
  font-size: var(--h5-font-size);
  font-weight: 300;
}

.info-box-text {
  color: #222;
}

/* ORDER PAGE */
.form-group {
  margin-bottom: 8px;
}

.form-group span {
  display: block;
  height: 17px;
  margin-top: 5px;
}
.order-grand-total {
  padding: 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  font-size: var(--font-semi);
}

.order-grand-payment {
  padding: 20px;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  font-size: 18px;
  font-weight: 600;
}

.order-gt-price {
  color: #008000;
}

.order-form-border {
  height: 3px;
  width: 100%;
  background-position-x: -30px;
  background-size: 116px 3px;
  background-image: repeating-linear-gradient(
    45deg,
    #6fa6d6,
    #6fa6d6 33px,
    transparent 0,
    transparent 41px,
    #f18d9b 0,
    #f18d9b 74px,
    transparent 0,
    transparent 82px
  );
}

.product-list {
  display: flex;
  flex-direction: column;
}

.product-list-header,
.product-detail-header {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 0;
  border-bottom: 1px solid #f7f7f7;
}

.product-search-box {
  background: #f3f4f5;
  width: 50%;
  overflow: hidden;
  border: 1px solid #e5e7e9;
  border-radius: 8px;
}

.product-search-box input {
  background-color: #fff;
  border: 0;
}

.product-list-body {
  display: flex;
  flex-flow: row wrap;
  /* flex: 1; */
  height: calc(100vh - 7rem);
  overflow-y: scroll;
}

.product-item {
  cursor: pointer;
  overflow: hidden;
  margin-bottom: var(--mb-2);
  border-radius: 8px;
  border: 1px solid #ececec;
}

.product-item-img {
  width: 100%;
  padding-bottom: 100%;
  position: relative;
}

.product-item-img .product-img,
.product-detail-img .product-img {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  z-index: 1;
}

.product-img {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.product-item-body {
  padding: 8px;
  background: #fff;
  color: #222;
}

.product-item-price {
  font-size: var(--semi-normal-font-size);
}

.product-detail {
  display: flex;
  flex-direction: column;
}

.product-detail-img-wrapper {
  max-width: 320px;
  margin: 10px auto;
}

.product-detail-img {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
  padding-bottom: 100%;
  border-radius: 8px;
}

.product-detail-title {
  padding: 10px;
  font-size: var(--h3-font-size);
  font-weight: 600;
}

.product-detail-body {
  height: calc(100vh - 212px);
  overflow-y: scroll;
}

.detail-variant-item {
  padding: 20px;
  border-top: 8px solid #f7f7f7;
}

.variant-title {
  font-size: var(--normal-font-size);
  font-weight: 600;
}

.variant-item {
  border-bottom: 1px solid #f0efef;
}

.variant-item:last-child {
  border-bottom: 0;
}

.variant-item .custom-control.custom-radio {
  display: flex;
  align-items: center;
  cursor: pointer;
  min-height: 50px;
}

.variant-item .custom-control-label {
  display: flex;
  width: 100%;
  height: 100%;
  align-items: center;
  cursor: pointer;
  font-weight: 400 !important;
}

.product-detail-footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  position: absolute;
  width: 100%;
  right: 0;
  bottom: 0;
  padding: 25px;
  box-shadow: 0 -2px 6px 0 rgb(28 28 28 / 6%);
  -webkit-backface-visibility: hidden;
  background: #fff;
}

.product-detail-qty {
  display: flex;
  flex-direction: row;
}

.product-detail-qty button {
  border: 1px solid #182540;
  color: #f4b177;
  padding: 6px;
}

.product-detail-qty input {
  width: 50px;
  border: 0;
  pointer-events: none;
  text-align: center;
}

.product-detail-action .btn-ribsgold {
  font-size: 14px;
  font-weight: 600;
  padding: 8px 15px;
}

@media screen and (max-width: 768px) {
  .product-detail-footer {
    flex-flow: column nowrap;
    align-items: center;
    padding: 15px;
  }

  .product-detail-qty {
    margin-bottom: 10px;
  }

  .product-detail-qty button {
    padding: 3px;
  }

  .product-detail-action {
    display: block;
    width: 100%;
  }
}

/* PAYMENT PAGE */
.card-success {
  color: #20c997;
}

.card-separator {
  margin: 25px 0;
  border: 1px dashed #dedede;
}

.card-header {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
}

.card-header .card-title {
  flex: 1;
}

.table-borderless td {
  padding: 5px 0;
}

.table-borderless tr td:last-child {
  text-align: right;
}

.payment-content-wrapper {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  margin-bottom: 10px;
}

.payment-content-wrapper label {
  font-size: 12px;
  font-weight: 300 !important;
  color: var(--gray);
}

.payment-content {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: space-between;
}

.payment-content img {
  max-width: 60px;
}

.payment-content small {
  font-size: var(--small-font-size);
  font-weight: 200;
}

.payment-right a {
  font-weight: 700;
  color: #005fb0;
}

.payment-body img {
  max-width: 300px;
  max-height: 300px;
}

.payment-item {
  padding: 10px;
  border: 1px solid #dee2e6;
  border-radius: 5px;
}

.payment-bank-img {
  width: 45px;
}

/* MY ORDER PAGE */

.myorder .myorder-navigation,
.myorder .myorder-content {
  margin-bottom: 1rem;
}

.myorder .myorder-navigation,
.myorder .myorder-item {
  background: #fff;
  box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
  border-radius: 0.25rem;
  overflow: hidden;
}

.navheader {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #dedede;
}

.navheader-list {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  justify-content: flex-start;
  overflow-y: scroll;
}

.navheader-action-button {
  padding: 8px;
}

.navheader-item {
  padding: 14px 18px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--semi-normal-font-size);
  color: #31353b70;
  white-space: nowrap;
  cursor: pointer;
}

.navheader-item.active,
.navheader-item:hover {
  color: #f4b177;
}

.navbody {
  padding: 1rem;
}

.myorder-item {
  margin-bottom: 2rem;
  cursor: pointer;
}

.myorder-item .myorder-item-header {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  border-bottom: 1px solid #dadada;
  font-size: 13px;
  padding: 12px 16px;
}

.myorder-item-header p::after {
  content: "|";
  color: #d8d8d8;
  display: inline-block;
  margin: 0 8px;
}

.myorder-item-header p:last-child:after {
  content: "";
}

.item-header-status,
.item-header-orderid {
  font-weight: 600;
}

.item-header-orderid {
  color: #3d9970;
}

.item-header-printed {
  position: absolute;
  right: 10px;
  display: flex;
  flex-flow: row nowrap;
  color: #0f5132;
}

.myorder-item-body {
  padding: 12px 16px;
}

.order-item {
  position: relative;
  margin-bottom: 10px;
}

.order-item-content {
  position: relative;
}

.order-item-content {
  border-radius: 0.5rem;
  overflow: hidden;
}

.order-item-content .order-item-title,
.order-item-content .order-item-formView {
  padding: 13px;
}

.order-item-content .order-item-formView {
  border: 1px solid #ececec;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  margin: 0;
}

/* .order-item-content:after {
    content: "";
    border-right: 1px solid #dedede;
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
} */

.order-item-formView .order-item-formItem {
  margin-bottom: 10px;
}

.order-item-formView .order-item-formItem label {
  font-weight: 500;
  margin-bottom: 0px;
}

.order-item-formView .order-item-formItem p {
  color: #6c757d;
  font-weight: 300;
}

.myorder-item-footer {
  display: flex;
  flex-flow: row nowrap;
  font-size: 14px;
  font-weight: 600;
  padding: 12px 16px;
  background: #8194a5;
  color: #fff;
  justify-content: space-between;
}

.order-success {
  background-color: #eef7f1;
  color: #1cb959;
}

.order-process {
  background-color: #fff5e9;
  color: #ff941a;
}
.order-cancel {
  background-color: #f9eff0;
  color: #f57c7c;
}

.input-daterange[readonly] {
  background: #fff;
  cursor: pointer;
}

.page-link {
  color: #172440;
}

.page-link:hover {
  color: #927158;
}

.page-item.active .page-link {
  background-color: #172440;
  border-color: #172440;
}

.order-action-tab {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  border: 1px solid #dedede;
  border-radius: 0.25rem;
}

.order-action-input {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex: 1 1 auto;
  padding: 0 10px;
}

.order-action-input div {
  margin-left: 10px;
}

.modal-pconfirm-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin: 12px 0;
}

.modal-footer.modal-pconfirm-footer {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
}

/*Form Wizard*/
.bs-wizard {
  padding: 20px 0;
}

.bs-wizard > .bs-wizard-step {
  padding: 0;
  position: relative;
}

.bs-wizard > .bs-wizard-step.completed > .bs-wizard-dot,
.bs-wizard > .bs-wizard-step.active > .bs-wizard-dot {
  background: #20c997;
}

.bs-wizard > .bs-wizard-step .bs-wizard-stepnum {
  color: #595959;
  font-size: 16px;
  margin-bottom: 5px;
}

.bs-wizard > .bs-wizard-step .bs-wizard-info {
  color: #999;
  font-size: 14px;
}

.bs-wizard > .bs-wizard-step > .bs-wizard-dot {
  position: absolute;
  width: 30px;
  height: 30px;
  display: block;
  background-color: #ececec;
  top: 25px;
  left: 50%;
  margin-top: -15px;
  margin-left: -15px;
  border-radius: 50%;
}

.bs-wizard > .bs-wizard-step > .progress {
  position: relative;
  border-radius: 0px;
  height: 8px;
  box-shadow: none;
  margin: 20px 0;
  background-color: #ececec;
}

.bs-wizard > .bs-wizard-step > .progress > .progress-bar {
  width: 0px;
  box-shadow: none;
  background: #20c997;
}

.bs-wizard > .bs-wizard-step.completed > .progress > .progress-bar {
  width: 100%;
}

.bs-wizard > .bs-wizard-step.active > .progress > .progress-bar {
  width: 50%;
}

.bs-wizard > .bs-wizard-step:first-child.active > .progress > .progress-bar {
  width: 0%;
}

.bs-wizard > .bs-wizard-step:last-child.active > .progress > .progress-bar {
  width: 100%;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot {
  background-color: #ececec;
}

.bs-wizard > .bs-wizard-step.disabled > .bs-wizard-dot:after {
  opacity: 0;
}

.bs-wizard > .bs-wizard-step:first-child > .progress {
  left: 50%;
  width: 50%;
}

.bs-wizard > .bs-wizard-step:last-child > .progress {
  width: 50%;
}

.bs-wizard > .bs-wizard-step.disabled a.bs-wizard-dot {
  pointer-events: none;
}

/* CUSTOM DATATABLES */
.table-bordered thead th,
.table-bordered thead td {
  border-bottom: 0px;
}

.label {
  padding: 0.3rem 1rem;
  border-radius: 2rem;
  font-size: 13px;
}

.borderless thead th,
.borderless td,
.borderless th {
  border: none;
}

.borderless th {
  font-weight: 600;
  text-transform: uppercase;
  font-size: var(--semi-normal-font-size);
  color: #31353b70;
}

.bg-rg-green {
  color: #3c763d;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}

.bg-rg-red {
  color: #a94442;
  background-color: #f2dede;
  border-color: #ebccd1;
}

div.dataTables_wrapper div.dataTables_info {
  font-size: var(--semi-normal-font-size);
  color: #6c757d;
}

/* PRODUCT LIST ADMIN */
.admpr-list {
  background: #fff;
  box-shadow: 0 0 1px rgb(0 0 0 / 13%), 0 1px 3px rgb(0 0 0 / 20%);
  border-radius: 0.25rem;
  overflow: hidden;
}

.admpr-list-navigation {
  border-bottom: 1px solid #dedede;
}

.admpr-list-content {
  overflow: auto;
}

/* PRODUCT FORM ADMIN */
.input-image {
  box-sizing: border-box;
  box-shadow: rgb(49 53 59 / 12%) 0px 1px 6px;
  border-radius: 8px;
  margin-right: 12px;
  background: rgb(243, 244, 245);
  width: 170px;
  height: 170px;
  margin-top: 10px;
  margin-bottom: 10px;
  border: 2px dashed rgb(219, 222, 226);
}

.input-image-content {
  cursor: pointer;
  overflow: hidden;
  display: flex;
  width: 100%;
  height: 100%;
}

.input-image-empty {
  margin: auto;
}

.input-image-content img {
  height: 168px;
  width: 100%;
  background-color: rgb(255, 255, 255);
  border-radius: 8px;
  border-image: initial;
  background-repeat: no-repeat;
  background-position: center center;
  object-fit: contain;
}

.vradmn-item {
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}

.vradmn-item .btn {
  margin-left: 15px;
}

.vrItemDel {
  color: #dc3545 !important;
  margin-left: 15px;
}

#productForm .card-body {
  overflow: auto;
}

#variantItem input {
  min-width: 124px;
}

#variantData td:last-child {
  display: flex;
  flex-flow: row nowrap;
}

#variantData td:last-child div {
  cursor: pointer;
}

.input__switch {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
}

.input__switch span {
  margin-top: 0;
}

.toogle_switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
  margin-right: 10px;
  margin-bottom: 0;
}

.toogle_switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toogle_slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

.toogle_slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked + .toogle_slider {
  background-color: #2196f3;
}

input:focus + .toogle_slider {
  box-shadow: 0 0 1px #2196f3;
}

input:checked + .toogle_slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded toogle_sliders */
.toogle_slider.round {
  border-radius: 34px;
}

.toogle_slider.round:before {
  border-radius: 50%;
}
