.row .col-lg-3, .row .col-lg-12 {
  padding: 10px 30px 10px 30px;
  box-sizing: border-box;
}

.tk-header-tabs-container {
  font-family: "Multi", Sans-serif;
}

.tk-header-tabs-container .tk-tabs-container .tk-tabs {}

@media (min-width: 700px) {
  .tk-header-tabs-container .tk-tabs-container .tk-tabs {
    padding-left: 100px;
  }
}

@media (max-width: 991px) {
  .tk-hide {
    display: none !important;
  }
  .tk-no-padding {
    padding: 0 !important;
  }
}

.tk-header-tabs-container .tk-tabs-container .tk-tabs .tk-tab {
  float: left;
  padding: 25px 50px 25px 50px;
  text-transform: uppercase;
  color: #fff;
  cursor: pointer;
  font-weight: bold;
}

.tk-header-tabs-container .tk-tabs-container .tk-tabs .tk-tab-passive {
  opacity: 0.85;
}

.tk-header-tabs-container .tk-tabs-container .tk-tabs .tk-tab-primary {
  background-color: #bb9a65;
}

.tk-header-tabs-container .tk-tabs-container .tk-tabs .tk-tab-secondary {
  background-color: #308698;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content {
  color: #fff;
}

/**-------------------------------------------------------------------------------------------------------------------*/
.tk-header-tabs-container .tk-tabs-container .tk-tab-content h5 {
  color: #fff;
  font-size: 16px;
  margin-top: 10px;
  margin-bottom: 5px;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content label {
  color: #fff;
  font-size: 12px;
  margin-bottom: 0;
  vertical-align: top;
  font-weight: bold;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .input-primary input {
  color: #fff;
  background-color: #8cb9c2;
  border: 1px solid #337988;
  padding: 10px;
  width: 90%;
  font-size: 12px;
  font-weight: bold;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .input-secondary input {
  color: #fff;
  background-color: #e4c187;
  border: 1px solid #977f58;
  padding: 10px;
  width: 90%;
  font-size: 12px;
  font-weight: bold;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content p {
  font-size: 14px;
}

/**-------------------------------------------------------------------------------------------------------------------*/
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-primary-container {
  display: inline-block;
  position: relative;
  padding-left: 21px;
  margin-bottom: 12px;
  margin-right: 10px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Radio primary */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-primary-container label {
  vertical-align: middle;
  display: inline-block;
  font-size: 12px;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-primary-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-primary-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #308698;
  border-radius: 50%;
  border: 1px solid #fff;
}

/* On mouse-over, add a grey background color */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-primary-container:hover input ~ .checkmark {
  background-color: #fff;
  border: 1px solid #308698;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-primary-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* When the radio button is checked, add a blue background */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-primary-container input:checked ~ .checkmark {
  background-color: #308698;
  border: 1px solid #fff;
}

/* Show the indicator (dot/circle) when checked */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-primary-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-primary-container .checkmark:after {
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

/* Radio secondary */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-secondary-container {
  display: inline-block;
  position: relative;
  padding-left: 21px;
  margin-bottom: 12px;
  margin-right: 10px;
  cursor: pointer;
  font-size: 14px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-secondary-container label {
  vertical-align: middle;
  display: inline-block;
  font-size: 12px;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-secondary-container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-secondary-container .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 16px;
  width: 16px;
  background-color: #bb9a65;
  border-radius: 50%;
  border: 1px solid #fff;
}

/* On mouse-over, add a grey background color */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-secondary-container:hover input ~ .checkmark {
  background-color: #fff;
  border: 1px solid #bb9a65;
}

/* Create the indicator (the dot/circle - hidden when not checked) */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-secondary-container .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* When the radio button is checked, add a blue background */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-secondary-container input:checked ~ .checkmark {
  background-color: #bb9a65;
  border: 1px solid #fff;
}

/* Show the indicator (dot/circle) when checked */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-secondary-container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the indicator (dot/circle) */
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .radio-secondary-container .checkmark:after {
  top: 2px;
  left: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
}

.tk-table th, td, tr {
  border: none !important;
}

table th {
  border: none !important;
}

table td {
  padding: 16px 8px 8px 8px !important;
}

table {
  border: none !important;
  margin: 0 !important;
}


.tk-header-tabs-container .tk-tabs-container .tk-tab-content .range {
  -webkit-appearance: none;  /* Override default CSS styles */
  appearance: none;
  display: inline-block;
  margin: auto;
  width: 100%; /* Full-width */
  height: 2px; /* Specified height */
  background: #d3d3d3; /* Grey background */
  outline: none; /* Remove outline */
  opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
  -webkit-transition: .2s; /* 0.2 seconds transition on hover */
  transition: opacity .2s;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .choice {
  font-size: 18px;
  text-align: center;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .range::-webkit-slider-thumb {
  -webkit-appearance: none; /* Override default look */
  appearance: none;
  border-radius: 8px;
  width: 16px; /* Set a specific slider handle width */
  height: 16px; /* Slider handle height */
  background: #fff; /* Green background */
  cursor: pointer; /* Cursor on hover */
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .checkbox-container .checked {
  background: url('checkbox_checked.jpg') no-repeat;
  background-size: contain;
}
/**-------------------------------------------------------------------------------------------------------------------*/
.tk-header-tabs-container .tk-tabs-container .tk-tab-content .button-primary {
  color: #fff;
  background: none;
  border: 2px solid #fff;
  text-transform: uppercase;
  font-size: 14px;
  border-radius: 20px;
  padding: 10px 20px 10px 20px;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content .button-no-border {
  border: none;
}

/**-------------------------------------------------------------------------------------------------------------------*/

.tk-header-tabs-container .tk-tabs-container .tk-tab-content-primary {
  background-color: #bb9a65;
}

.tk-header-tabs-container .tk-tabs-container .tk-tab-content-secondary {
  background-color: #308698;
}

/**-------------------------------------------------------------------------------------------------------------------*/

[v-cloak] { display:none; }

.tk-modal {}

.tk-modal .tk-model-background {
  position: fixed;
  opacity: 0.6;
  background: #333;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 9998;
}

.tk-modal .tk-modal-container {
  width: 800px;
  padding: 40px;
  box-sizing: border-box;
  background-color: #fff;
  position: absolute;
  top: 40px;
  left: 50%;
  right: 50%;
  z-index: 999999999;
  border: 10px solid #308698;
  border-radius: 20px;
  margin-left: -400px;
}

.tk-modal .tk-modal-container hr {
  border: 1px solid #f3f3f3;
}

.tk-modal .tk-modal-container .tk-icon {
  font-size: 92px;
  color: #A7DD6F;
}

.tk-modal .tk-modal-container .tk-modal-footer {
  text-align: right;
  padding-top: 10px;
}

.tk-modal .tk-modal-container .tk-modal-footer .tk-btn-close {
  border: 1px solid #ccc;
  background: none;
  padding: 10px 20px 10px 20px;
}

.tk-modal .tk-modal-container .tk-modal-footer .tk-btn-close:hover {
  border-color: #308698;
  color: #fff;
  background-color: #308698;
}

