* {
  padding: 0;
  margin: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border: none;
  outline: none;
}

@font-face {
  font-family: "din-next-regular";
  src: url(../fonts/din-next-regular.ttf);
}

@font-face {
  font-family: "din-next-medium";
  src: url(../fonts/din-next-medium.ttf);
}

.font-medium {
  font-family: "din-next-medium";
}

.font-size-20 {
  font-size: 20px !important;
}

.font-size-16 {
  font-size: 16px !important;
}

.font-size-18 {
  font-size: 18px !important;
}

.font-size-14 {
  font-size: 14px !important;
}

.font-size-12 {
  font-size: 12px !important;
}

a:hover,
a:focus {
  text-decoration: none;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.h1,
.h2,
.h3,
.h4,
.h5,
.h6,
h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.6;
  font-weight: 400;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  color: #000;
}

p {
  margin: 0;
  color: #6a6c6e;
}

input,
textarea,
a,
button {
  outline: none !important;
}

img {
  vertical-align: middle;
  max-width: 100%;
  height: auto;
}

a {
  color: #252066;
}

a:hover {
  color: #252066;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 16px;
}

h6 {
  font-size: 14px;
}

@-webkit-keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fadeIn {
  -webkit-animation-name: fadeIn;
  animation-name: fadeIn;
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -20px, 0);
    transform: translate3d(0, -20px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInDown {
  -webkit-animation-name: fadeInDown;
  animation-name: fadeInDown;
}

@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translateX(20px);
    transform: translateX(20px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInRight {
  -webkit-animation-name: fadeInRight;
  animation-name: fadeInRight;
}

@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    -webkit-transform: translateX(-20px);
    transform: translateX(-20px);
    -moz-transform: translateX(-20px);
    -ms-transform: translateX(-20px);
    -o-transform: translateX(-20px);
  }

  to {
    opacity: 1;
    -webkit-transform: none;
    transform: none;
  }
}

.fadeInLeft {
  -webkit-animation-name: fadeInLeft;
  animation-name: fadeInLeft;
}

body {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.8;
  background-color: #fff;
  font-family: "din-next-regular";
  color: #6a6c6e;
  direction: rtl;
  text-align: right;
}

button,
input,
optgroup,
select,
textarea {
  font-family: "din-next-regular";
}

.form-control {
  height: 50px;
  background-color: #f3f3f7;
  border: 1px solid #f3f3f7;
  border-radius: 30px;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: .375rem 1.4rem;
  font-size: 16px;
  color: #777777;
}

.form-control.form-md {
  height: 45px;
}

textarea.form-control {
  border-radius: 15px;
}

.form-control:focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  border-color: #252066;
  background-color: #f3f3f7;
}

.input-icon {
  position: relative;
}

.input-icon .form-control {
  padding-left: 40px;
  padding-right: 10px;
}

.input-icon .icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
}

.textarea-icon {
  position: relative;
}

.textarea-icon .form-control {
  padding-left: 50px !important;
}

.textarea-icon .icon {
  position: absolute;
  left: 15px;
  top: 20px;
}

.main-wrapper {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.bg-primary {
  background-color: #252066 !important;
}

.text-primary {
  color: #252066 !important;
}

.text-primary-light {
  color: #483fbe !important;
}

button {
  cursor: pointer;
}

.pointer {
  cursor: pointer;
}

.main-content {
  padding: 60px 0px;
}

.btn:focus,
.btn.focus {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.loader-page {
  background: #f8f8f8;
  color: #fff;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  z-index: 999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.loader-page span {
  position: absolute;
  display: inline-block;
  width: 80px;
  height: 80px;
  border-radius: 100%;
  -webkit-animation: loader3 1.5s linear infinite;
  animation: loader3 1.5s linear infinite;
  background-color: #252066;
}

.loader-page span:last-child {
  animation-delay: -0.9s;
  -webkit-animation-delay: -0.9s;
}

@keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes loader3 {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.8;
  }

  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

@media (min-width: 992px) {
  .page-header .title-page {
    font-size: 22px;
  }
}

@media (max-width: 991px) {
  .page-header .title-page {
    font-size: 16px;
  }
}

.row.row-md {
  margin-right: -8px;
  margin-left: -8px;
}

.row.row-md>[class*=col-] {
  padding-right: 8px;
  padding-left: 8px;
}

.row.row-sm {
  margin-right: -3px;
  margin-left: -3px;
}

.row.row-sm>[class*=col-] {
  padding-right: 3px;
  padding-left: 3px;
}

.row.row-lg {
  margin-right: -12px;
  margin-left: -12px;
}

.row.row-lg>[class*=col-] {
  padding-right: 12px;
  padding-left: 12px;
}

::-webkit-input-placeholder {
  color: #5d5d5d !important;
  font-size: 16px !important;
}

::-moz-placeholder {
  color: #5d5d5d !important;
  font-size: 16px !important;
}

:-ms-input-placeholder {
  color: #5d5d5d !important;
  font-size: 16px !important;
}

::-ms-input-placeholder {
  color: #5d5d5d !important;
  font-size: 16px !important;
}

::placeholder {
  color: #5d5d5d !important;
  font-size: 16px !important;
}

::-moz-placeholder {
  color: #5d5d5d !important;
  font-size: 16px !important;
}

::-ms-placeholder {
  color: #5d5d5d !important;
  font-size: 16px !important;
}

::-o-placeholder {
  color: #5d5d5d !important;
  font-size: 16px !important;
}

::-webkit-placeholder {
  color: #5d5d5d !important;
  font-size: 16px !important;
}

.symbol {
  display: inline-block;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  position: relative;
  border-radius: 0.42rem;
}

.symbol.symbol-20>img {
  width: 100%;
  max-width: 20px;
  height: 20px;
}

.symbol.symbol-30>img {
  width: 100%;
  max-width: 30px;
  height: 30px;
}

.symbol.symbol-40>img {
  width: 100%;
  max-width: 40px;
  height: 40px;
}

.symbol.symbol-50>img {
  width: 100%;
  max-width: 50px;
  height: 50px;
}

.symbol.symbol-60>img {
  width: 100%;
  max-width: 60px;
  height: 60px;
}

@media (max-width: 991px) {
  .symbol.symbol-60>img {
    max-width: 30px;
    height: 30px;
  }
}

.symbol.symbol-70>img {
  width: 100%;
  max-width: 70px;
  height: 70px;
}

@media (max-width: 991px) {
  .symbol.symbol-70>img {
    max-width: 40px;
    height: 40px;
  }
}

.symbol.symbol-80>img {
  width: 100%;
  max-width: 80px;
  height: 80px;
}

@media (max-width: 991px) {
  .symbol.symbol-80>img {
    max-width: 50px;
    height: 50px;
  }
}

.symbol.symbol-90>img {
  width: 100%;
  max-width: 90px;
  height: 90px;
}

@media (max-width: 991px) {
  .symbol.symbol-90>img {
    max-width: 60px;
    height: 60px;
  }
}

.symbol.symbol-100>img {
  width: 100%;
  max-width: 100px;
  height: 100px;
}

@media (max-width: 991px) {
  .symbol.symbol-100>img {
    max-width: 70px;
    height: 70px;
  }
}

.symbol.symbol-110>img {
  width: 100%;
  max-width: 110px;
  height: 110px;
}

@media (max-width: 991px) {
  .symbol.symbol-110>img {
    max-width: 80px;
    height: 80px;
  }
}

.symbol.symbol-120>img {
  width: 100%;
  max-width: 120px;
  height: 120px;
}

@media (max-width: 991px) {
  .symbol.symbol-120>img {
    max-width: 90px;
    height: 90px;
  }
}

.label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0.15rem 0.75rem;
  border-radius: 0.52rem;
  background-color: #EBEDF3;
  color: #3F4254;
  font-size: 14px;
}

.label.label-primary {
  color: #FFFFFF;
  background-color: #4446e9;
}

.label.label-success {
  color: #FFFFFF;
  background-color: #00a651;
}

.label.label-danger {
  color: #FFFFFF;
  background-color: #e4482e;
}

.btn {
  font-size: 14px;
  padding: 11px 50px;
}

.btn:not(.dropdown-toggle) {
  -webkit-box-shadow: 0px 3px 7.44px 0.56px #21196833;
  box-shadow: 0px 3px 7.44px 0.56px #21196833;
}

.btn.btn-sm {
  padding: 9px 40px;
}

.btn-primary {
  background-color: #211968;
  border-color: #211968;
  color: #FFF;
}

.btn-primary:hover,
.btn-primary:focus {
  background-color: #130e46 !important;
  border-color: #130e46 !important;
  -webkit-box-shadow: 0px 3px 7.44px 0.56px #21196833;
  box-shadow: 0px 3px 7.44px 0.56px #21196833;
}

.btn-primary-2 {
  background-color: #e2513e;
  border-color: #e2513e;
  color: #FFF;
}

.btn-primary-2:hover,
.btn-primary-2:focus {
  background-color: #c54130 !important;
  border-color: #c54130 !important;
  color: #FFF !important;
}

.btn-black {
  background-color: #2c2c2c;
  border-color: #2c2c2c;
  color: #FFF;
}

.btn-black:hover,
.btn-black:focus {
  background-color: #181818 !important;
  border-color: #181818 !important;
  color: #FFF !important;
}

.btn-outline-primary {
  color: #252066;
  border-color: #252066;
}

.btn-outline-primary:hover,
.btn-outline-primary:focus {
  background-color: #252066 !important;
  border-color: #252066 !important;
  color: #FFF !important;
}

.btn-icon {
  width: 25px;
  height: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 50%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  color: #000000;
  -webkit-transition: background-color .2s ease-in-out, color .2s ease-in-out;
  -o-transition: background-color .2s ease-in-out, color .2s ease-in-out;
  transition: background-color .2s ease-in-out, color .2s ease-in-out;
}

.btn-icon:hover {
  background-color: #252066;
  color: #FFF;
}

.datetimepicker.dropdown-menu {
  border: 0 !important;
  margin: 0;
  border-radius: 4px;
  width: 265px;
  min-width: 14rem;
  padding: 10px;
  -webkit-box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  box-shadow: 0px 0px 50px 0px rgba(82, 63, 105, 0.15);
  padding: 1rem 0.5rem;
  border-radius: 4px;
}

.datetimepicker table {
  width: 100%;
}

.datetimepicker table {
  margin: 0;
}

.datetimepicker td,
.datetimepicker th {
  text-align: center;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  border: none;
  font-family: Arial;
  font-size: 12px;
}

.datetimepicker td,
.datetimepicker th {
  width: 35px;
  height: 35px;
  border-radius: 3px;
  font-weight: normal;
}

.datetimepicker thead th.prev,
.datetimepicker thead th.switch,
.datetimepicker thead th.next {
  color: #a7abc3;
  font-weight: 500;
}

.datetimepicker thead tr:first-child th,
.datetimepicker tfoot th {
  cursor: pointer;
}

.datetimepicker th.switch {
  width: 145px;
}

.datetimepicker thead th.next>span,
.datetimepicker thead th.prev>span {
  display: inline-block;
  font: normal normal normal 16px/1 "LineAwesome";
  font-size: inherit;
  text-decoration: inherit;
  text-rendering: optimizeLegibility;
  text-transform: none;
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-size: 12px;
}

.datetimepicker thead th.prev .glyphicon,
.datetimepicker thead th.switch .glyphicon,
.datetimepicker thead th.next .glyphicon {
  color: #a7abc3;
}

.datetimepicker th span.glyphicon {
  pointer-events: none;
}

.datetimepicker thead th.prev>span:before {
  content: "\f054";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
}

.datetimepicker thead th.next>span:before {
  content: "\f053";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
}

.datetimepicker tbody tr>td.day {
  color: #6c7293;
}

.datetimepicker tbody tr>td.day.old {
  color: #a7abc3;
}

.datetimepicker tbody tr>td.day:hover {
  background: #f7f8fa;
}

.datetimepicker tbody tr>td.day.selected,
.datetimepicker tbody tr>td.day.active {
  background: #252066;
  color: #ffffff;
}

.bootstrap-select:not([class*="col-"]):not([class*="form-control"]):not(.input-group-btn) {
  width: 100%;
}

.bootstrap-select>select.mobile-device:focus+.dropdown-toggle,
.bootstrap-select .dropdown-toggle:focus {
  outline: 0px auto -webkit-focus-ring-color !important;
  outline-offset: 0px;
}

.bootstrap-select .dropdown-toggle .filter-option {
  text-align: right;
}

.bootstrap-select>.dropdown-toggle {
  background-color: #f3f3f7;
  border-color: #f3f3f7;
  padding: 13px 10px;
  font-size: 16px;
  color: #5d5d5d !important;
  height: 50px;
  border-radius: 30px;
  text-align: right;
}

.bootstrap-select>.dropdown-toggle.bs-placeholder {
  color: #5d5d5d !important;
}

.dropdown-toggle:hover,
.dropdown-toggle:focus {
  background-color: #edeff2 !important;
  border-color: #edeff2 !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.bootstrap-select .dropdown-menu li.selected.active a:hover {
  color: #fff;
}

.bootstrap-select .dropdown-toggle::after {
  content: unset;
}

.bootstrap-select .dropdown-toggle::before {
  position: absolute;
  content: '\e832';
  font-family: 'iconfont';
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}

.dropdown-menu .dropdown-item {
  font-size: 14px;
  text-align: right;
  padding: 0.4rem 1.5rem;
  -webkit-transition: all .2s ease-in-out;
  -o-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

.dropdown-item.active,
.dropdown-item:active {
  color: #fff !important;
  background-color: #252066;
}

.btn-light:not(:disabled):not(.disabled).active,
.btn-light:not(:disabled):not(.disabled):active,
.show>.btn-light.dropdown-toggle {
  color: #fff;
  background-color: #edeff2;
  border-color: #252066;
}

.dropdown-menu {
  border: 0;
  -webkit-box-shadow: 0px 0px 18px 2px #ecf1f4c7;
  box-shadow: 0px 0px 18px 2px #ecf1f4c7;
  -webkit-animation: animation-dropdown-menu-fade-in .4s ease 1, animation-dropdown-menu-move-up .4s ease-out 1;
  animation: animation-dropdown-menu-fade-in .4s ease 1, animation-dropdown-menu-move-up .4s ease-out 1;
}

@-webkit-keyframes animation-dropdown-menu-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes animation-dropdown-menu-fade-in {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (max-width: 992px) {
  .main-header {
    padding: 15px 0px;
    position: relative;
    -webkit-box-shadow: 0px 5px 15px 0px rgba(148, 148, 163, 0.1);
    box-shadow: 0px 5px 15px 0px rgba(148, 148, 163, 0.1);
    background-color: #FFF;
  }

  .main-header .logo {
    margin-left: auto;
  }

  .main-header .logo img {
    max-height: 55px;
  }

  .header-mobile__toolbar {
    color: #000;
  }

  .main-header .menu-container .main-menu .menu_item .menu_link.req {
    padding: 8px 20px !important;
  }

  .active-body {
    overflow: hidden;
  }

  .mobile-menu-overlay {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 100;
    visibility: hidden;
    background-color: rgba(51, 51, 51, 0.51);
  }

  .mobile-menu-overlay-active {
    visibility: visible;
  }

  .menu--mobile {
    padding-top: 20px;
    min-width: 100px;
    width: 250px;
    height: 100%;
    position: fixed;
    right: 0;
    top: 0;
    bottom: 0;
    z-index: 9999;
    background: #fbfbfb;
    -ms-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    opacity: 0;
    visibility: hidden;
    -webkit-transition: 0.4s ease-in-out;
    -o-transition: 0.4s ease-in-out;
    transition: 0.4s ease-in-out;
  }

  .menu--mobile>.container {
    padding-left: 0;
    padding-right: 0;
    max-width: calc(100% - 0px);
  }

  .menu--mobile .list-main-menu {
    width: 100%;
  }

  .menu--mobile .main-menu .menu_item {
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }

  .menu--mobile .main-menu .menu_item .menu_link {
    color: #252525;
    padding: 10px 25px;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    border-bottom: 1px solid #00000017;
    font-size: 14px;
  }

  .menu--mobile .main-menu .menu_item .menu_link.active {
    background-color: #8a8a8a1f;
  }

  .menu--mobile .main-menu .menu_item .btn {
    border-radius: 0px !important;
    display: block;
    padding: 10px 25px !important;
    text-align: right;
  }

  .btn-close-header-mobile {
    color: #000;
    height: 25px;
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 0px 20px 10px;
  }

  .menu-mobile-active {
    transform: translateX(0);
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    opacity: 1;
    visibility: visible;
  }
}

.pagination {
  margin-top: 40px;
}

.pagination .page-item {
  margin: 0px 5px;
}

.pagination .page-item .page-link {
  color: #838993;
  background-color: transparent;
  border: 0;
  margin: 0;
  font-size: 18px;
  transition: 0.2s ease-in-out;
  -webkit-transition: 0.2s ease-in-out;
  -moz-transition: 0.2s ease-in-out;
  -ms-transition: 0.2s ease-in-out;
  -o-transition: 0.2s ease-in-out;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 9px 15px;
  border-radius: 8px;
  background-color: white;
  -webkit-box-shadow: 0px 5px 15px 0px rgba(148, 148, 163, 0.1);
  box-shadow: 0px 5px 15px 0px rgba(148, 148, 163, 0.1);
}

.pagination .page-item .page-link:hover {
  color: #fff;
  text-decoration: none;
  background-color: #252066;
  border-color: #252066;
}

.pagination .page-item.active .page-link {
  z-index: 1;
  color: #fff;
  background-color: #252066;
  border-color: #252066;
}

.m-checkbox {
  position: relative;
  padding-right: 35px !important;
  margin-bottom: 15px;
  cursor: pointer;
  font-size: 14px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #252066;
}

.m-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.m-checkbox .checkmark {
  position: absolute;
  height: 25px;
  width: 25px;
  background-color: #f3f3f7;
  right: 0px;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 8px;
}

.m-checkbox .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

.m-checkbox input:checked~.checkmark:after {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background-color: #252066;
}

.m-checkbox .checkmark:after {
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  font-size: 12px;
  width: 14px;
  height: 14px;
  border-radius: 4px;
}

.m-radio {
  position: relative;
  padding-right: 35px !important;
  margin-bottom: 15px !important;
  cursor: pointer;
  font-size: 16px !important;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  color: #000;
  /* Create a custom radio */
  /* Create the checkmark/indicator (hidden when not checked) */
}

.m-radio .checkmark {
  position: absolute;
  height: 25px;
  width: 25px;
  background-color: #f3f3f7;
  right: 0px;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  border-radius: 8px;
}

.m-radio .checkmark:after {
  content: "";
  position: absolute;
  opacity: 0;
  -webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
}

/* Hide the browser's default radio */
.m-radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Show the checkmark when checked */
.m-radio input:checked~.checkmark:after {
  opacity: 1;
}

.m-radio .checkmark:after {
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  font-size: 12px;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background-color: #252066;
}

.breadcrumb {
  background: transparent;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 0;
  padding: 0;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.breadcrumb .breadcrumb-item {
  color: #000000;
  font-size: 12px;
}

.breadcrumb .breadcrumb-item a {
  color: #000000;
}

.breadcrumb .breadcrumb-item+.breadcrumb-item {
  padding-right: .5rem;
  padding-left: 0px;
}

.breadcrumb-item+.breadcrumb-item::before {
  display: inline-block;
  padding-left: 0.5rem;
  padding-right: 0px;
  color: #000000;
  font-size: 12px;
  padding-top: .08rem;
  content: "/";
}

@media (min-width: 992px) {
  .main-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    top: 0px;
    right: 0;
    width: 100%;
    position: relative;
    height: 90px;
    z-index: 3;
    -webkit-box-shadow: 0px 3px 25.11px 1.89px rgba(33, 25, 104, 0.08);
    box-shadow: 0px 3px 25.11px 1.89px rgba(33, 25, 104, 0.08);
    background-color: #FFF;
  }

  .main-header.internal {
    background-color: transparent;
    -webkit-box-shadow: none;
    box-shadow: none;
  }

  .main-header .logo img {
    max-height: 90px;
  }

  .main-header .menu--mobile {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-flex: 1;
    -ms-flex: auto;
    flex: auto;
  }

  .main-header .menu-container {
    position: relative;
  }

  .main-header .menu-container .main-menu .menu_item {
    display: inline-block;
    position: relative;
  }

  .main-header .menu-container .main-menu .menu_item .menu_link {
    cursor: pointer;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    line-height: 45px;
    position: relative;
    color: #2a2a2a;
    margin: 0px 20px;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    font-size: 16px;
    font-family: "din-next-medium";
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
  }

  .main-header .menu-container .main-menu.list-main-menu .menu_item:hover .menu_link,
  .main-header .menu-container .main-menu.list-main-menu .menu_item.active .menu_link {
    color: #252066;
  }

  .menu-container .main-menu.list-main-menu .menu_link::before {
    width: 0;
    height: 2px;
    position: absolute;
    bottom: 2px;
    right: 0;
    content: "";
    background-color: #252066;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
  }

  .menu-container .main-menu.list-main-menu .menu_item .menu_link:hover::before,
  .main-header .menu-container .main-menu.list-main-menu .menu_item.active .menu_link::before {
    width: 30px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .main-header .menu-container .main-menu .menu_item .menu_link {
    font-size: 12px;
    margin: 0px 10px;
  }
}


.bg-body {
  background-image: url(../images/bg-home.png);
  background-position: left top;
  background-repeat: no-repeat;
  background-size: 79%;
}

@media (min-width: 1600px) {
  .bg-body {
    background-size: 72% 22%;
  }
}

@media (max-width: 991px) {
  .bg-body {
    background-size: 120%;
  }
}



.bg-body .main-header {
  -webkit-box-shadow: none;
  box-shadow: none;
  background-color: transparent;
}

.section-home {
  position: relative;
  -js-display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  padding: 70px 0px;
}

.section-home .home-content .home-title {
  color: #252066;
}

@media (min-width: 992px) {
  .section-home .home-content .home-title {
    font-size: 60px;
  }

  .section-home .home-content .home-text {
    font-size: 24px;
  }
}

@media (max-width: 992px) {
  .section-home .home-image img {
    width: 300px;
    margin-bottom: 20px;
  }

  .section-home .home-content {
    text-align: center;
  }

  .section-home .home-content .home-title {
    font-size: 30px;
  }

  .section-home .home-content .home-text {
    font-size: 20px;
  }
}

.heading {
  text-align: center;
}

.title-section {
  margin-bottom: 20px;
  color: #46484b;
}

@media (max-width: 991px) {
  .title-section {
    font-size: 26px;
  }
}

@media (min-width: 992px) {
  .title-section {
    font-size: 34px;
  }
}

.section {
  position: relative;
  z-index: 1;
}

@media (max-width: 991px) {
  .section {
    padding: 30px 0px;
  }
}

@media (min-width: 992px) {
  .section {
    padding: 60px 0px;
  }
}

.box_shadow {
  -webkit-box-shadow: 0px 0px 10px 0px #4d46a826;
  box-shadow: 0px 0px 10px 0px #4d46a826;
}

.box_shadow_md {
  -webkit-box-shadow: 0px 12px 32px 0px #abbdc721;
  box-shadow: 0px 12px 32px 0px #abbdc721;
}

.box_shadow_lg {
  -webkit-box-shadow: 0px 3px 25px 1.89px #21196814;
  box-shadow: 0px 3px 25px 1.89px #21196814;
}

.rounded_40 {
  border-radius: 40px;
}

.rounded_30 {
  border-radius: 30px;
}

.rounded_25 {
  border-radius: 25px;
}

.rounded_20 {
  border-radius: 20px;
}

.rounded_15 {
  border-radius: 15px;
}

.rounded_10 {
  border-radius: 10px;
}

.bg_light {
  background-color: #f4f3ff !important;
}

.bg_light_2 {
  background-color: #f3f3f7 !important;
}

.border-1 {
  border: 1px solid;
}

.border-2 {
  border: 2px solid;
}

.border-3 {
  border: 3px solid;
}

.border-gray {
  border-color: #e7e6f5 !important;
}

.border-primary {
  border-color: #252066 !important;
}

.text-underline {
  text-decoration: underline;
}

.text_dark {
  color: #000;
}

.text_muted {
  color: #6a6c6e;
}

.widget__item-sec {
  position: relative;
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
  border-radius: 20px;
  background-color: #210099;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 0px 5px 26px 5px;
  margin-bottom: 60px;
  -webkit-transition: -webkit-transform .4s ease-in-out;
  transition: -webkit-transform .4s ease-in-out;
  -o-transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
 
}

.nav-tabs .nav-link.widget__item-sec{
  border:0;
  border-radius: 20px;
}

.nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active {
  background-color: #210099;
}

.nav-tabs .nav-link.active::before{
  position: absolute;
  content: "";
  width: 37px;
  height: 37px;
  background-color: #210099;
  bottom: -5px;
  transform: rotate(45deg);
  z-index: -1;
}
.nav-tabs .nav-link.active.widget-2::before{
  background-color: #ffb400 ;
 
}

.widget__item-sec .widget__item-icon {
  border-radius: 20px;
  width: 90px;
  height: 90px;
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
  position: relative;
  z-index: 1;
  margin-bottom: 35px;
  margin-top: -30px;
}

.widget__item-sec .widget__item-icon::before {
  border-radius: 20px;
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  -webkit-box-shadow: 0px 3px 13.95px 1.05px #00000014;
  box-shadow: 0px 3px 13.95px 1.05px #00000014;
  z-index: -1;
  -webkit-transform: skewX(-8deg);
  -ms-transform: skewX(-8deg);
  transform: skewX(-8deg);
}

.widget__item-sec .widget__item-icon img {
  max-height: 50px;
}

.widget__item-sec .widget__item-title {
  height: 44px;
  overflow: hidden;
}

.widget__item-sec.widget-2 {
  background-color: #ffb400 !important;
}

.widget__item-sec:hover {
  -webkit-transform: translateY(-12px);
  -ms-transform: translateY(-12px);
  transform: translateY(-12px);
}

.widget__item-faq {
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

.widget__item-faq * {
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.widget__item-faq:hover {
  background-color: #211968 !important;
}

.widget__item-faq:hover * {
  color: #FFF !important;
}

.widget__item-info li {
  color: #9897ad;
  font-size: 12px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.widget__item-info li:not(:last-of-type) {
  margin-left: 20px;
}

.bg-coment {
  background: url(../images/bg-coment.png);
  background-repeat: no-repeat;
  background-size: cover;
}

.owl-coment .owl-item {
  padding: 85px 0px 0px;
}

.widget__item-coment {
  padding: 30px 20px 40px;
}

.widget__item-coment .widget__item-image {
  margin-top: -80px;
}

.widget__item-coment .widget__item-image img {
  border: 4px solid #FFF;
}

.owl-carousel.owl-theme .owl-nav {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%) translateX(50%);
  -ms-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%);
  right: 50%;
  width: 110%;
  margin-top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 0px;
  color: #FFF;
}

.owl-carousel.owl-theme .owl-nav [class*=owl-] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  padding: 0 !important;
  text-align: center;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: #252066;
  -webkit-transition: background 0.3s ease-in-out;
  -o-transition: background 0.3s ease-in-out;
  transition: background 0.3s ease-in-out;
  margin: 0;
}

.owl-carousel.owl-theme .owl-nav [class*=owl-] span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.owl-carousel.owl-theme .owl-dots .owl-dot.active span,
.owl-carousel.owl-theme .owl-dots .owl-dot:hover span {
  background: #252066;
}

.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
  background: #1e1a55;
}

.owl-coment.owl-theme .owl-nav {
  margin-top: 40px;
}

.page-title {
  padding: 22px 0px;
  background-color: #e7e6f5;
}

.widget__item-cate {
  padding: 80px 10px;
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

.widget__item-cate .widget__item-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid #000;
  background-color: #f7f7f7;
}

.widget__item-cate .widget__item-icon img {
  max-height: 130px;
}

.widget__item-cate .widget__item-icon.icon-sm {
  width: 120px;
  height: 120px;
}

.widget__item-cate .widget__item-icon.icon-sm img {
  max-height: 110px;
}

.widget__item-cate .widget__item-title {
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.widget__item-cate:hover {
  background-color: #252066;
}

.widget__item-cate:hover .widget__item-title {
  color: #FFF;
}

.widget__item-cate:hover .btn-primary {
  background-color: #FFF !important;
  color: #252066 !important;
}

.widget__item-cate-2 {
  -webkit-transition: background-color .3s ease-in-out;
  -o-transition: background-color .3s ease-in-out;
  transition: background-color .3s ease-in-out;
}

.widget__item-cate-2 .widget__item-icon {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 2px solid;
  margin: 60px 0px;
  -webkit-transition: border .3s ease-in-out;
  -o-transition: border .3s ease-in-out;
  transition: border .3s ease-in-out;
}

.widget__item-cate-2 .widget__item-icon img {
  -webkit-transition: all .3s ease-in-out;
  -o-transition: all .3s ease-in-out;
  transition: all .3s ease-in-out;
}

.widget__item-cate-2 .widget__item-title {
  -webkit-transition: color .3s ease-in-out;
  -o-transition: color .3s ease-in-out;
  transition: color .3s ease-in-out;
}

.widget__item-cate-2 .widget__item-content {
  padding: 26px 0px;
  border-top: 1px solid transparent;
  -webkit-transition: border-top .3s ease-in-out;
  -o-transition: border-top .3s ease-in-out;
  transition: border-top .3s ease-in-out;
}

.widget__item-cate-2.widget-1 .widget__item-icon {
  border-color: #252066;
}

.widget__item-cate-2.widget-1 .widget__item-content {
  background-color: #252066;
}

.widget__item-cate-2.widget-1:hover {
  background-color: #252066;
}

.widget__item-cate-2.widget-2 .widget__item-icon {
  border-color: #4704ab;
}

.widget__item-cate-2.widget-2 .widget__item-content {
  background-color: #4704ab;
}

.widget__item-cate-2.widget-2:hover {
  background-color: #4704ab;
}

.widget__item-cate-2.widget-3 .widget__item-icon {
  border-color: #ffb400;
}

.widget__item-cate-2.widget-3 .widget__item-content {
  background-color: #ffb400;
}

.widget__item-cate-2.widget-3:hover {
  background-color: #ffb400;
}

.widget__item-cate-2:hover .widget__item-content {
  border-top: 1px solid #ffffff38;
}

.widget__item-cate-2:hover .widget__item-icon {
  border-color: #fff;
}

.widget__item-cate-2:hover .widget__item-icon img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

.widget__item-contact .widget__item-icon {
  width: 50px;
  height: 50px;
}

.form-group label {
  margin-bottom: 2px;
  padding-right: 20px;
  color: #252066;
  font-size: 13px;
}

.nav_link li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: #252066;
  padding: 5px 15px;
  -webkit-transition: color .3s ease-in-out, background-color .3s ease-in-out;
  -o-transition: color .3s ease-in-out, background-color .3s ease-in-out;
  transition: color .3s ease-in-out, background-color .3s ease-in-out;
  position: relative;
  border-radius: 30px;
}

.nav_link li a i {
  margin-left: 10px;
}

.nav_link li a.active,
.nav_link li a:hover {
  background-color: #f7f7fc;
}

@media (max-width: 991px) {
  .nav_link li a {
    font-size: 13px;
    margin-bottom: 5px;
  }
}

@media (min-width: 991px) {
  .nav_link li a {
    font-size: 14px;
    margin-bottom: 5px;
  }
}

.widget__item-vid .widget__item-image {
  position: relative;
  height: 0;
  padding-top: 85%;
}

.widget__item-vid .widget__item-image a::before {
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #000;
  opacity: 0;
  content: "";
  -webkit-transition: opacity .3s ease-in-out;
  -o-transition: opacity .3s ease-in-out;
  transition: opacity .3s ease-in-out;
  top: 0;
  right: 0;
  z-index: 1;
}

.widget__item-vid .widget__item-image img {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
}

.widget__item-vid .widget__item-image a:hover::before {
  opacity: .5;
}

.widget__item-vid .widget__item-content {
  background-color: #f5f5f5;
}

.widget__item-vid .widget__item-title {
  height: 44px;
  overflow: hidden;
}

.widget__item-vid .widget__item-title a {
  display: inline-block;
}

.widget__item-vid .widget__item-title a:hover {
  color: #252066 !important;
}

:root {
  --plyr-color-main: #252066;
}

.form-control.input-phone {
  padding-left: 115px;
}

.select-phone {
  position: absolute;
  left: 2px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 1;
}

.select-phone .bootstrap-select>.dropdown-toggle {
  height: 48px;
}

.dropzone {
  border: 2px dashed #f3f3f7;
  border-radius: 15px;
  background-color: #fdfdfd;
  min-height: 190px;
  padding: 50px 29px;
}

.dropzone .dz-message {
  margin: 0;
}

.dropzone .dz-message>span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.dropzone .dz-message>span .icon {
  font-size: 40px;
  color: #4704ab;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: 5px;
}

.dropzone .dz-message>span .text {
  font-size: 16px;
  color: #8a87b2;
}

.dropzone .dz-message {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 590px;
  }
}

.main-avatar {
  padding: 20px 10px;
  border-radius: 25px;
  background-color: #f3f3f7;
  border: 1px dashed #c1c1e0;
  width: 200px;
  height: 200px;
  max-width: 100%;
  margin: auto;
  border-radius: 50%;
}

.auestion-action .btn {
  width: 150px;
  height: 43px;
  padding: 5px 5px;
}

@media (max-width: 991px) {
  .auestion-action .btn {
    margin-bottom: 5px;
  }
}

.list-answers li {
  border: 2px solid #f3f3f7;
  background-color: #f3f3f7;
  border-radius: 30px;
  margin-bottom: 15px;
  color: #252066;
  font-size: 14px;
  font-family: "din-next-medium";
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
}

.list-answers li.selected {
  border-color: #47129f;
}

.list-answers li.success {
  border-color: #c9f4a6;
  background-color: #f6ffef;
}

.list-answers li.success::before {
  position: absolute;
  font-family: 'iconfont';
  content: "\e7db";
  color: #3ea139;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}

.list-answers li.danger {
  border-color: #ffb9b9;
  background-color: #ffefef;
}

.list-answers li.danger::before {
  position: absolute;
  font-family: 'iconfont';
  content: "\e7dc";
  color: #d74949;
  left: 15px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  font-size: 18px;
}

.bg-light-danger {
  background-color: #ffefee !important;
}

.text-danger {
  color: #e13229 !important;
}

.bg-light-success {
  background-color: #f8fff7 !important;
}

.text-success {
  color: #4aaa3e !important;
}

.bg-light-black {
  background-color: #f0f0f0 !important;
}

.text-black {
  color: #111111 !important;
}

.custom-table tbody tr td {
  color: #211968;
  font-size: 14px;
  font-family: "din-next-medium";
}

@media (min-width: 992px) {
  .custom-table {
    border-collapse: separate;
    border-spacing: 0 12px;
    border: 0;
  }

  .custom-table th {
    color: #a09bca;
    font-size: 14px;
    font-weight: 400;
    padding-bottom: 0 !important;
  }
}

.custom-table td,
.custom-table th {
  border: 0 !important;
  vertical-align: middle;
}

.custom-table tbody tr {
  border-radius: 30px;
  background-color: #e7e6f5;
}

@media (min-width: 991px) {
  .custom-table thead tr th {
    padding: 0px 25px !important;
  }

  .custom-table tbody tr td {
    padding: 13px 25px !important;
  }

  .custom-table tbody tr td:nth-of-type(1) {
    border-radius: 0px 30px 30px 0px;
  }

  .custom-table tbody tr td:last-of-type {
    border-radius: 30px 0px 0px 30px;
  }
}

@media (max-width: 991px) {
  .custom-table thead {
    display: none;
  }

  .custom-table>tbody>tr {
    margin-bottom: 12px;
    display: block;
    border-radius: 10px;
  }

  .custom-table>tbody>tr>td[data-title]:before {
    content: attr(data-title);
    font-size: inherit;
    font-weight: 400;
    color: #757575;
  }

  .custom-table>tbody>tr td {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    font-size: 14px !important;
    padding: 7px 17px !important;
  }
}

::-moz-selection {
  background-color: #252066;
  color: #FFF;
}

::selection {
  background-color: #252066;
  color: #FFF;
}

label.error {
  color: red;
  font-size: 12px;
  margin-bottom: 0 !important;
}

.footer-top {
  padding: 60px 0px 60px;
  position: relative;
}

.footer-bottom {
  padding: 0px 0px 20px 0px;
}

.footer-bottom p {
  color: #fff;
  font-size: 14px;
}

.main-footer {
  background-color: #0c0c0c;
}

.main-footer .title-footer {
  position: relative;
  display: inline-block;
  color: #fff;
}

.main-footer .link-footer a {
  color: #ffffff80;
  display: inline-block;
  position: relative;
  -webkit-transition: all 500ms, color 200ms;
  -o-transition: all 500ms, color 200ms;
  transition: all 500ms, color 200ms;
}

.main-footer .link-footer a:hover {
  color: #FFF;
}

.main-footer .desc-website {
  font-size: 15px;
  color: #fff;
  line-height: 1.9;
}

@media (max-width: 991px) {
  .main-footer .title-footer {
    font-size: 18px;
    margin-top: 30px;
  }

  .main-footer .link-footer a {
    font-size: 13px;
    margin-bottom: 14px;
  }
}

@media (min-width: 992px) {
  .main-footer .title-footer {
    font-size: 20px;
    margin-bottom: 30px;
  }

  .main-footer .link-footer a {
    font-size: 14px;
    margin-bottom: 10px;
  }
}

.social-media {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.social-media.social-sm li a {
  width: 20px;
  height: 20px;
  font-size: 14px;
  padding-top: 2px;
}

.social-media.social-lg li a {
  width: 40px;
  height: 40px;
  font-size: 18px;
}

.social-media li a {
  border-radius: 3px;
  width: 28px;
  height: 28px;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  background-color: transparent;
}

.social-media li:not(:last-of-type) {
  margin-left: 10px;
}

.social-media li a:hover {
  color: #fff;
}

.social-media li a:hover.fa {
  background-color: #3a5898;
}

.social-media li a:hover.tw {
  background-color: #1da1f2;
}

.social-media li a:hover.li {
  background-color: #0073b1;
}

.social-media li a:hover.yo {
  background-color: #ff0000;
}

.social-media li a:hover.wh {
  background-color: #00E676;
}

.social-media li a:hover.in {
  background-color: #bb00aa;
}

.social-media li a:hover.sn {
  background-color: #FFFC01;
}

.field-group {
  position: relative;
  margin-bottom: 10px;
  border-radius: 5px;
}

.field-group ::-webkit-input-placeholder {
  color: #FFF !important;
}

.field-group ::-moz-placeholder {
  color: #FFF !important;
}

.field-group :-ms-input-placeholder {
  color: #FFF !important;
}

.field-group ::-ms-input-placeholder {
  color: #FFF !important;
}

.field-group ::placeholder {
  color: #FFF !important;
}

.field-group .bg-white::-webkit-input-placeholder {
  color: #5D5D5D !important;
}

.field-group .bg-white::-moz-placeholder {
  color: #5D5D5D !important;
}

.field-group .bg-white:-ms-input-placeholder {
  color: #5D5D5D !important;
}

.field-group .bg-white::-ms-input-placeholder {
  color: #5D5D5D !important;
}

.field-group .bg-white::placeholder {
  color: #5D5D5D !important;
}

.field-group .field-group-icon {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 1px;
  width: 42px;
  height: 96%;
  background-color: #54A9FF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 5px 0px 0px 5px;
  color: #FFF;
}

.field-group .field-group-icon:hover {
  background-color: #54A9FF;
}

.field-group .form-control {
  border: 0;
  border-radius: 4px;
  background-color: #386796;
  border: 1px solid #F8FCFA;
  color: #FFF;
  height: 40px;
}

.main-footer .field-group .form-control:focus {
  border-color: #fff;
}

.widget__item-status {
  padding: 4px 12px;
  border-radius: 30px;
  color: #FFF;
  background-color: #00a651;
  position: absolute;
  top: 17px;
  left: 15px;
  font-size: 12px;
}

@media (max-width: 992px) {
  .main-footer .title-footer {
    font-size: 18px;
    margin-top: 25px;
    margin-bottom: 10px;
  }
}

@media (max-width: 991px) {
  .pa-sm-20 {
    padding: 20px !important;
  }

  .font-sm-20 {
    font-size: 20px !important;
  }

  .font-sm-18 {
    font-size: 18px !important;
  }

  .font-sm-16 {
    font-size: 16px !important;
  }

  .font-sm-14 {
    font-size: 14px !important;
  }

  .font-sm-12 {
    font-size: 12px !important;
  }
}

/*  */





.play-video {
  width: 80px;
  height: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 30px;
  background-color: #007bff;
  color: #FFF;
  border-radius: 50%;
  -webkit-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out;
  position: relative;
  z-index: 1;
}

.play-video i {
  -webkit-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}

.play-video::before,
.play-video::after {
  opacity: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 5px;
  left: 5px;
  bottom: 0;
  content: "";
  height: 70px;
  width: 70px;
  border: 2px solid #007bff;
  border-radius: 100%;
  -webkit-animation-name: ripple;
  animation-name: ripple;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  animation-timing-function: cubic-bezier(0.65, 0, 0.34, 1);
  z-index: -1;
}

.play-video::before {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0.5s;
  animation-delay: 0.5s;
}

.play-video::after {
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-delay: 0s;
  animation-delay: 0s;
}

.play-video:hover {
  background-color: #fff;
  color: #fff;
}

.play-video:hover i {
  color: #007bff;
}

@-webkit-keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale3d(1.19, 1.19, 1.45);
    transform: scale3d(1.19, 1.19, 1.45);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(1.95, 1.95, 1.19);
    transform: scale3d(1.95, 1.95, 1.19);
  }
}

@keyframes ripple {
  from {
    opacity: 1;
    -webkit-transform: scale3d(1.19, 1.19, 1.45);
    transform: scale3d(1.19, 1.19, 1.45);
  }

  to {
    opacity: 0;
    -webkit-transform: scale3d(1.95, 1.95, 1.19);
    transform: scale3d(1.95, 1.95, 1.19);
  }
}



.content-video .play-video {
  position: absolute;
  top: 50%;
  right: 50%;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  z-index: 1;
}

.bg-video {
  position: relative;
  z-index: 0;
}


.bg-video:before {
  position: absolute;
  content: "";
  background: url(../images/bg-rounnd.png);
  background-position: right bottom;
  background-repeat: no-repeat;
  width: 96%;
  height: 1500px;
  background-size: 100% 100%;
  right: 0;
  bottom: 0;
  z-index: -2;
}

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 0;
  border-radius: 8px;
  box-shadow: 0px 0px 15px 0px rgb(148 148 163 / 10%);
  height: 55px;
  padding-right: 10px;
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: 55px;
  font-size: 16px;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
  color: #000;
}

.select2-container--default .select2-selection--single .select2-selection__arrow{
  height: 55px;
  top: 0;
}
.select2-container--default .select2-selection--single .select2-selection__arrow:before {
  content: "\f078";
  font-family: "Font Awesome 5 free";
  font-weight: 900;
  position: absolute;
  top: 49%;
  left: 15px;
  font-size: 12px;
  transform: translateY(-50%);
}
.select2-container--default .select2-selection--single .select2-selection__arrow b{
  display: none;
}
form.form-control.col-12 {
    height: auto !important;
}