/* Table Styles */

.table-wrapper {
  margin: 0px 0;
  box-shadow: 0px 5px 5px rgba(0, 0, 0, 0.1);
}

.yt_table {
  border: 1px solid #ccc;
  border-collapse: collapse;
  margin: 0;
  padding: 0;
  width: 100%;
  table-layout: fixed;
}

.yt_table tr {
  background: #ffffff;
}

.yt_table__tbody {
  background: #004991;
}

.yt_table tr th {
  text-align: center !important;
}

.yt_table tr th,
.yt_table tr td {
  padding: 1em;
  font-size: 15px;
  text-align: left;
}

.yt_table tr td {
  border: 1px solid #ddd;
}

.yt_table__thead tr {
  background-color: #d9d9d9;
  color: #191a1c;
}

.yt_table__thead th {
  text-transform: uppercase;
}

@media screen and (max-width: 767px) {
  .yt_table {
    border: 0;
  }

  .yt_table tr {
    border-bottom: 1px solid #ddd;
    display: block;
    margin-bottom: 0.8em;
  }

  .yt_table tr td {
    border: 0;
    border-bottom: 1px solid #ddd;
    display: block;
    font-size: 0.8em;
    text-align: left;
    padding-left: 7em;
    position: relative;
  }

  .yt_table tr td:before {
    content: attr(data-label);
    font-weight: bold;
    text-transform: uppercase;
    position: absolute;
    left: 20px;
  }

  .yt_table tr td:last-child {
    border-bottom: 0;
  }

  .yt_table__thead {
    border: none;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
}

.odt-bx {
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.odt-bx label {
  display: block;
  line-height: 40px;
  cursor: pointer;
}

.option-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  position: relative;
  top: 5px;
  right: 0;
  bottom: 0;
  left: 0;
  height: 20px;
  width: 20px;
  transition: all 0.15s ease-out 0s;
  background: #cbd1d8;
  border: none;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  margin-right: 0.5rem;
  outline: none;
  position: relative;
  z-index: 10;
}

.option-input:hover {
  background: #9faab7;
}

.option-input:checked {
  background: #40e0d0;
}

.option-input:checked::before {
  width: 20px;
  height: 20px;
  display: flex;
  content: "\f00c";
  font-size: 14px;
  font-weight: bold;
  position: absolute;
  align-items: center;
  justify-content: center;
  font-family: "Font Awesome 5 Free";
}

.option-input:checked::after {
  -webkit-animation: click-wave 0.65s;
  -moz-animation: click-wave 0.65s;
  animation: click-wave 0.65s;
  background: #40e0d0;
  content: "";
  display: block;
  position: relative;
  z-index: 100;
}

.option-input.radio {
  border-radius: 50%;
}

.option-input.radio::after {
  border-radius: 50%;
}

@keyframes click-wave {
  0% {
    height: 20px;
    width: 20px;
    opacity: 0.35;
    position: relative;
  }

  100% {
    height: 60px;
    width: 60px;
    margin-left: -30px;
    margin-top: -30px;
    opacity: 0;
  }
}

/*******Choose Product*******/

.order-det-table {
  background: #ffffff;
  border-radius: 15px;
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active,
.show>.btn-primary.dropdown-toggle {
  color: #fff;
  background-color: #000;
  border-color: #000;
}

.btn:not(:disabled):not(.disabled):active,
.btn:not(:disabled):not(.disabled).active {
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn:not(:disabled):not(.disabled) {
  cursor: pointer;
}

/*******img*******/
img {
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: middle;
  border-style: none;
}