﻿body {
  height: 100%;
  margin: 0;
}
a {
  text-decoration: none;
}

.main-wrap {
  background: #000;
  text-align: center;
}
.main-wrap h1 {
  color: #fff;
  margin-top: 50px;
  margin-bottom: 100px;
}

.modal-xlg {
  width: 1000px;
}

.modal-xla {
  width: 1300px;
}
/* ALL LOADERS */
.loader {
  border: 16px solid #f3f3f3; /* Light grey */
  border-top: 16px solid #3498db; /* Blue */
  border-radius: 50%;
  width: 80px;
  height: 80px;
  animation: spin 2s linear infinite;
  margin: 0 auto;
}
.loaderss {
  width: 16px;
  height: 16px;
  border-radius: 100%;
  position: relative;
  margin: 0 auto;
  float: left;
}
.btnConfirm div {
  display: none;
}
.btnConfirm2 div {
  display: none;
}
/* LOADER 1 */

#loader-1:before,
#loader-1:after {
  content: "";
  position: absolute;
  /*top: -10px;*/
  left: -10px;
  width: 100%;
  height: 100%;
  border-radius: 100%;
  border: 10px solid transparent;
  border-top-color: #3498db;
}

#loader-1:before {
  z-index: 100;
  animation: spin 1s infinite;
}

#loader-1:after {
  border: 10px solid #ccc;
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

/* LOADER 2 */

#loader-2 span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #3498db;
  margin: 35px 5px;
}

#loader-2 span:nth-child(1) {
  animation: bounce 1s ease-in-out infinite;
}

#loader-2 span:nth-child(2) {
  animation: bounce 1s ease-in-out 0.33s infinite;
}

#loader-2 span:nth-child(3) {
  animation: bounce 1s ease-in-out 0.66s infinite;
}

@keyframes bounce {
  0%,
  75%,
  100% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }

  25% {
    -webkit-transform: translateY(-20px);
    -ms-transform: translateY(-20px);
    -o-transform: translateY(-20px);
    transform: translateY(-20px);
  }
}

/* LOADER 3 */

#loader-3:before,
#loader-3:after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  top: 0;
  left: calc(50% - 10px);
  background-color: #3498db;
  animation: squaremove 1s ease-in-out infinite;
}

#loader-3:after {
  bottom: 0;
  animation-delay: 0.5s;
}

@keyframes squaremove {
  0%,
  100% {
    -webkit-transform: translate(0, 0) rotate(0);
    -ms-transform: translate(0, 0) rotate(0);
    -o-transform: translate(0, 0) rotate(0);
    transform: translate(0, 0) rotate(0);
  }

  25% {
    -webkit-transform: translate(40px, 40px) rotate(45deg);
    -ms-transform: translate(40px, 40px) rotate(45deg);
    -o-transform: translate(40px, 40px) rotate(45deg);
    transform: translate(40px, 40px) rotate(45deg);
  }

  50% {
    -webkit-transform: translate(0px, 80px) rotate(0deg);
    -ms-transform: translate(0px, 80px) rotate(0deg);
    -o-transform: translate(0px, 80px) rotate(0deg);
    transform: translate(0px, 80px) rotate(0deg);
  }

  75% {
    -webkit-transform: translate(-40px, 40px) rotate(45deg);
    -ms-transform: translate(-40px, 40px) rotate(45deg);
    -o-transform: translate(-40px, 40px) rotate(45deg);
    transform: translate(-40px, 40px) rotate(45deg);
  }
}

/* LOADER 4 */

#loader-4 span {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 100%;
  background-color: #3498db;
  margin: 35px 5px;
  opacity: 0;
}

#loader-4 span:nth-child(1) {
  animation: opacitychange 1s ease-in-out infinite;
}

#loader-4 span:nth-child(2) {
  animation: opacitychange 1s ease-in-out 0.33s infinite;
}

#loader-4 span:nth-child(3) {
  animation: opacitychange 1s ease-in-out 0.66s infinite;
}

@keyframes opacitychange {
  0%,
  100% {
    opacity: 0;
  }

  60% {
    opacity: 1;
  }
}

/* LOADER 5 */

#loader-5 span {
  display: block;
  position: absolute;
  left: calc(50% - 20px);
  top: calc(50% - 20px);
  width: 20px;
  height: 20px;
  background-color: #3498db;
}

#loader-5 span:nth-child(2) {
  animation: moveanimation1 1s ease-in-out infinite;
}

#loader-5 span:nth-child(3) {
  animation: moveanimation2 1s ease-in-out infinite;
}

#loader-5 span:nth-child(4) {
  animation: moveanimation3 1s ease-in-out infinite;
}

@keyframes moveanimation1 {
  0%,
  100% {
    -webkit-transform: translateX(0px);
    -ms-transform: translateX(0px);
    -o-transform: translateX(0px);
    transform: translateX(0px);
  }

  75% {
    -webkit-transform: translateX(30px);
    -ms-transform: translateX(30px);
    -o-transform: translateX(30px);
    transform: translateX(30px);
  }
}

@keyframes moveanimation2 {
  0%,
  100% {
    -webkit-transform: translateY(0px);
    -ms-transform: translateY(0px);
    -o-transform: translateY(0px);
    transform: translateY(0px);
  }

  75% {
    -webkit-transform: translateY(30px);
    -ms-transform: translateY(30px);
    -o-transform: translateY(30px);
    transform: translateY(30px);
  }
}

@keyframes moveanimation3 {
  0%,
  100% {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    -o-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }

  75% {
    -webkit-transform: translate(30px, 30px);
    -ms-transform: translate(30px, 30px);
    -o-transform: translate(30px, 30px);
    transform: translate(30px, 30px);
  }
}

/* LOADER 6 */

#loader-6 {
  top: 40px;
  left: -2.5px;
}

#loader-6 span {
  display: inline-block;
  width: 5px;
  height: 20px;
  background-color: #3498db;
}

#loader-6 span:nth-child(1) {
  animation: grow 1s ease-in-out infinite;
}

#loader-6 span:nth-child(2) {
  animation: grow 1s ease-in-out 0.15s infinite;
}

#loader-6 span:nth-child(3) {
  animation: grow 1s ease-in-out 0.3s infinite;
}

#loader-6 span:nth-child(4) {
  animation: grow 1s ease-in-out 0.45s infinite;
}

@keyframes grow {
  0%,
  100% {
    -webkit-transform: scaleY(1);
    -ms-transform: scaleY(1);
    -o-transform: scaleY(1);
    transform: scaleY(1);
  }

  50% {
    -webkit-transform: scaleY(1.8);
    -ms-transform: scaleY(1.8);
    -o-transform: scaleY(1.8);
    transform: scaleY(1.8);
  }
}

/* LOADER 7 */

#loader-7 {
  -webkit-perspective: 120px;
  -moz-perspective: 120px;
  -ms-perspective: 120px;
  perspective: 120px;
}

#loader-7:before {
  content: "";
  position: absolute;
  left: 25px;
  top: 25px;
  width: 50px;
  height: 50px;
  background-color: #3498db;
  animation: flip 1s infinite;
}

@keyframes flip {
  0% {
    transform: rotate(0);
  }

  50% {
    transform: rotateY(180deg);
  }

  100% {
    transform: rotateY(180deg) rotateX(180deg);
  }
}

/* LOADER 8 */

#loader-8:before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  top: calc(50% - 10px);
  left: 0px;
  background-color: #3498db;
  animation: rotatemove 1s infinite;
}

@keyframes rotatemove {
  0% {
    -webkit-transform: scale(1) translateX(0px);
    -ms-transform: scale(1) translateX(0px);
    -o-transform: scale(1) translateX(0px);
    transform: scale(1) translateX(0px);
  }

  100% {
    -webkit-transform: scale(2) translateX(45px);
    -ms-transform: scale(2) translateX(45px);
    -o-transform: scale(2) translateX(45px);
    transform: scale(2) translateX(45px);
  }
}

/* Empty. Add your own CSS if you like */
body,
html,
* {
  padding: 0;
  margin: 0;
}
a.items {
  color: #333;
  text-decoration: none;
}
.boxInfos .item,
.boxInfos2 .item {
  text-overflow: initial !important;
  white-space: initial !important;
}
.telmb {
  border: 1px solid green;
  display: block;
  float: right;
  width: 22px;
  height: 22px;
  text-align: center;
  margin: 0 auto;
  border-radius: 20px;
}
.telmb i {
  display: contents;
}
.btnadd {
  width: 50%;
  border: none;
  font-size: 16px !important;
  margin: 2px;
}

.help-block {
  color: red;
}
.resendotp {
  margin-top: 10px;
}
#map {
  height: 100%;
  /* Change 100% to 400px and the map will display    */
}
.luoitoado {
  position: absolute;
  display: block;
  z-index: 9999;
}

.nextstep {
  margin: 30px 0px;
}
.nextstep button {
  background: #ccc;
  color: #666;
}
.box_edit_shipinfo {
  display: block;
  position: relative;
}
/*#shipSpec{
    position:absolute;
    top:0;
    left:414px;
}*/
.box_content {
  animation-delay: 1s;
  transition: 1s;
}
#noteAlarm {
  border: 1px solid #ccc;
  width: 100%;
  margin: 10px 0;
  padding: 5px;
}
.user-avatar {
  color: blue;
  background: #fff;
  border-radius: 100%;
  width: 40px;
  height: 40px;
  text-align: center;
  vertical-align: middle;
  font-size: 18px;
  line-height: 2.2;
  font-family: initial;
  display: block;
  vertical-align: middle;
}
.boxShipowner {
  color: #fff;
  margin-left: 10px;
  padding-top: 0px;
  float: left;
}
a {
  text-decoration: none;
}
.text-center {
  text-align: center;
}
.boxAvatar {
  width: 100%;
  float: left;
}
.boxLogin {
  width: 100%;
  /* display: flex; */
  text-align: right;
  float: right;
}
.shipownerName {
}
.block-home1 {
  /*background:rgba(255, 255, 255, 0.08);*/
  width: 100%;
  height: 100%;
  display: block;
  padding: 10px 0;
  color: #fff;
  border-radius: 5px;
}
.block-ship {
  width: 100%;
  border: 1px solid #ccc;
  margin-top: 0px;
}
.block-home2 {
  /*background: #fff;*/
  text-align: center;
  padding: 0px 0px;
}
.headerBox {
  margin: 0;
  padding: 10px 10px;
  position: relative;
}
.headerBox:before {
  display: block;
  content: "";
  width: 1px;
  height: 100%;
  border: 2px solid green;
  position: absolute;
  top: 0px;
  left: 0;
}
.tabsVss {
  position: relative;
  display: block;
}
.tabsVss .tab-nav.tabs {
  position: relative;
  border: none;
  top: 0;
}
.input-right {
  float: right;
  border: none;
  margin: 0px 0px 0px;
  padding: 10px 4px 22px 40px;
}
.tabsVss .pane.tab-content {
  position: relative;
}
.clear-both {
  clear: both;
}
.block-notifilecation {
  border: 1px solid #ccc;
}
.block-home2 i.icon,
.block-home1 i.icon {
  font-size: 30px;
}
.block-home2 p,
.block-home1 p {
  margin: 0;
}
.plus-vss:before {
  font-size: 18px !important;
  color: #0c60ee;
}
.numberPopup {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  position: absolute;
  top: 0;
  line-height: 1.5;
  background: red;
  color: white;
  font-size: 11px;
  right: -14px;
  filter: inherit;
}
.date {
  font-size: 13px !important;
}
/**
 * Action Sheets
 * --------------------------------------------------
 */
.action-sheet-backdrop {
  -webkit-transition: background-color 150ms ease-in-out;
  transition: background-color 150ms ease-in-out;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: transparent;
}
.action-sheet-backdrop.active {
  background-color: rgba(0, 0, 0, 0.4);
}

.action-sheet-wrapper {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  -webkit-transition: all cubic-bezier(0.36, 0.66, 0.04, 1) 500ms;
  transition: all cubic-bezier(0.36, 0.66, 0.04, 1) 500ms;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: 500px;
  margin: auto;
}

.action-sheet-up {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.action-sheet {
  margin-left: 8px;
  margin-right: 8px;
  width: auto;
  z-index: 11;
  overflow: hidden;
}
.action-sheet .button {
  display: block;
  text-align: center !important;
  padding: 1px;
  width: 100% !important;
  border-radius: 0;
  border-color: #d1d3d6 !important;
  background-color: transparent !important;
  color: #007aff !important;
  font-size: 21px !important;
}
.action-sheet .button:hover {
  color: #007aff;
}
.action-sheet .button.destructive {
  color: #ff3b30;
}
.action-sheet .button.destructive:hover {
  color: #ff3b30;
}
.action-sheet .button.active,
.action-sheet .button.activated {
  box-shadow: none;
  border-color: #d1d3d6;
  color: #007aff;
  background: #e4e5e7;
}

.action-sheet-has-icons .icon {
  position: absolute;
  left: 16px;
}

.action-sheet-title {
  padding: 16px;
  color: #8f8f8f;
  text-align: center;
  font-size: 13px;
}

.action-sheet-group {
  margin-bottom: 8px;
  border-radius: 4px;
  background-color: #fff;
  overflow: hidden;
}
.action-sheet-group .button {
  border-width: 1px 0px 0px 0px;
}
.action-sheet-group .button:first-child:last-child {
  border-width: 0;
}

.action-sheet-options {
  background: #f1f2f3;
}

.action-sheet-cancel .button {
  font-weight: 500;
}

.action-sheet-open {
  pointer-events: none;
}
.action-sheet-open.modal-open .modal {
  pointer-events: none;
}
.action-sheet-open .action-sheet-backdrop {
  pointer-events: auto;
}

.platform-android .action-sheet-backdrop.active {
  background-color: rgba(0, 0, 0, 0.2);
}

.platform-android .action-sheet {
  margin: 0;
}
.platform-android .action-sheet .action-sheet-title,
.platform-android .action-sheet .button {
  text-align: left;
  border-color: transparent;
  font-size: 16px;
  color: inherit;
}
.platform-android .action-sheet .action-sheet-title {
  font-size: 14px;
  padding: 16px;
  color: #666;
}
.platform-android .action-sheet .button.active,
.platform-android .action-sheet .button.activated {
  background: #e8e8e8;
}

.platform-android .action-sheet-group {
  margin: 0;
  border-radius: 0;
  background-color: #fafafa;
}

.platform-android .action-sheet-cancel {
  display: none;
}

.platform-android .action-sheet-has-icons .button {
  padding-left: 56px;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 11;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4);
  visibility: hidden;
  opacity: 0;
  -webkit-transition: 0.1s opacity linear;
  transition: 0.1s opacity linear;
}
.backdrop.visible {
  visibility: visible;
}
.backdrop.active {
  opacity: 1;
}

#boxListSeamans ion-label {
  display: list-item;
  width: 100%;
  padding: 10px 15px;
  max-width: 100%;
  clear: both;
  border: 1px solid green;
}
#map {
  height: 100%;
  /* Change 100% to 400px and the map will display    */
}
.iconVSS {
  content: "";
  width: 32px;
  height: 32px;
  display: inline-flex;
  text-align: center;
  filter: invert(1);
  background-blend-mode: multiply;
}
.icon_thuyenvien {
  background: url("../img/icon_ship/thuyenvien.png") no-repeat center center;
  background-size: 34px;
}
.icon_xnchuyentai {
  background: url("../img/icon_ship/xnchuyentai.png") no-repeat center center;
  background-size: 28px;
}
.icon_xntieuthu {
  background: url("../img/icon_ship/xntieuthu.png") no-repeat center center;
  background-size: 32px;
}
.icon_ship {
  background: url("../img/icon_ship/ships.png") no-repeat center center;
  background-size: 20px;
  width: 24px;
  height: 24px;
}
.icon_outport {
  background: url("../img/icon_ship/outports.png") no-repeat center center;
  background-size: 32px;
  filter: inherit;
}
.icon_inport {
  background: url("../img/icon_ship/outports.png") no-repeat center center;
  background-size: 32px;
  filter: inherit;
  transform: rotate(180deg);
}
.icon_noteship {
  background: url("../img/icon_ship/nhatky.png") no-repeat center center;
  background-size: 32px;
  filter: inherit;
}
ion-header-bar.bar {
  border: none;
}
.loadingXn.spinner svg {
  width: 100px;
  height: 100px;
  stroke: #444;
  fill: #444;
}
.numberPending {
  color: #fff;
  background: #f00;
  border-radius: 100%;
  height: 15px;
  font-size: 10px;
  padding: 2px;
  position: absolute;
  top: 10px;
  /* right: 0; */
  width: 15px;
  line-height: 1;
  text-align: center;
}
.tab-infoShip,
.tab-seaMen,
.tab-infoQuantity {
  position: relative;
}
.waitingXD {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: blue;
}
.waitingHT {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: #cece01e3;
}
.typeRc,
.typeCC {
  /* mixed - xoay ngang; upright - sap xep cac chu theo chieu doc */
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 100%;
  background: #03ff4b;
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: #fff;
  font-size: 9px;
  word-spacing: -4px;
  font-weight: bold;
  letter-spacing: -3px;
}
.a_center {
  text-align: center !important;
}
.a_vertical {
  vertical-align: middle !important;
}
.panel-heading {
  background-image: -webkit-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
  background-image: -o-linear-gradient(top, #f5f5f5 0, #e8e8e8 100%);
  background-image: -webkit-gradient(
    linear,
    left top,
    left bottom,
    from(#f5f5f5),
    to(#e8e8e8)
  );
  background-image: linear-gradient(to bottom, #f5f5f5 0, #e8e8e8 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fff5f5f5',endColorstr='#ffe8e8e8',GradientType=0);
  background-repeat: repeat-x;
}
.panel-heading {
  color: #333;
  background-color: #f5f5f5;
  border-color: #ddd;
}
.panel-heading {
  padding: 10px 15px;
  border-bottom: 1px solid transparent;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
}
.th_middle tr th {
  vertical-align: middle !important;
  font-size: 14px;
}

.trxnnl.active {
  background: #d7fbd7 !important;
}
table.table-bordered.black {
  border: 1px solid black;
  margin-top: 20px;
}
table.table-bordered.black > thead > tr > th {
  border: 1px solid black;
}
table.table-bordered.black > tbody > tr > td {
  border: 1px solid black;
}
div.your-modal-class .modal-content {
  max-height: 700px;
  overflow: auto;
}
.panel-title {
  position: relative;
}

.panel-title::after {
  content: "△";
  color: #333;
  top: 4px;
  right: 5px;
  position: absolute;
  font-size: 12px;
}

.panel-title.actived::after {
  content: "▽";
}
fieldset.scheduler-border {
  border: 1px solid #ddd !important;
  padding: 0 1.4em 1.4em 1.4em !important;
  margin: 0 0 1.5em 0 !important;
  -webkit-box-shadow: 0px 0px 0px 0px #eee;
  box-shadow: 0px 0px 0px 0px #eee;
}

legend.scheduler-border {
  font-size: 1em !important;
  font-weight: bold !important;
  text-align: left !important;
  width: auto;
  padding: 0 10px;
  border-bottom: none;
}
.nopadding {
  padding: 0 !important;
}
.nomargin {
  margin: 0 !important;
}
.nav-pills.nav-stacked li {
  border-bottom: 1px solid #eee;
}
select {
  padding: 5px 5px;
  border: 1px solid #ccc;
}
.nofontweight {
  font-weight: 100 !important;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}
.alert {
  margin-bottom: 0;
}
.form-horizontal .has-feedback .form-control-feedback {
  right: 0;
  top: 32px;
}
#validatorFishingPort .has-feedback .form-control {
  padding-right: 0px;
}
.input-inline {
  float: left;
}
.input-inline input {
  border-radius: 0 !important;
}
/*
    style status
*/
.PENDING {
  color: #acb70b;
  /*font-weight:bold !important;*/
}
.PENDINGAPPROVE {
  color: #337ab7;
  /*font-weight: bold !important;*/
}
.PENDINGAPPROVECOMPLETE {
  color: #0044cc;
  /*font-weight: bold !important;*/
}
.CANCEL {
  color: #ec2222;
  /*font-weight: bold !important;*/
}
.REJECTED {
  color: #a94442;
  /*font-weight: bold !important;*/
}
.ACCEPTED {
  color: #2ed231;
  /*font-weight:bold !important;*/
}

/* Customize the label (the container) */
.checkboxCustom {
  display: block;
  position: relative;
  padding-left: 5px;
  margin-bottom: 25px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkboxCustom input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkboxCustom:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkboxCustom input:checked ~ .checkmark {
  background-color: #2196f3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkboxCustom input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkboxCustom .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.spin {
  -webkit-animation: spin 2s infinite linear;
  -moz-animation: spin 2s infinite linear;
  -o-animation: spin 2s infinite linear;
  animation: spin 2s infinite linear;
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.refeshData:hover {
  text-decoration: none;
}

.wizard {
  margin: 0px auto;
  background: #fff;
}

.wizard .nav-tabs {
  position: relative;
  margin: 0px auto;
  margin-bottom: 0;
  border-bottom-color: #e0e0e0;
}

.wizard > div.wizard-inner {
  position: relative;
}

/*.connecting-line {
    height: 2px;
    background: #e0e0e0;
    position: absolute;
    width: 80%;
    margin: 0 auto;
    left: 0;
    right: 0;
    top: 50%;
    z-index: 1;
}*/

.wizard .nav-tabs > li.active > a,
.wizard .nav-tabs > li.active > a:hover,
.wizard .nav-tabs > li.active > a:focus {
  color: green;
  cursor: default;
  border: 0;
  border-bottom-color: transparent;
}

span.round-tab {
  width: 40px;
  height: 40px;
  line-height: 38px;
  display: inline-block;
  border-radius: 100px;
  background: #fff;
  border: 2px solid #e0e0e0;
  z-index: 2;
  position: relative;
  left: 0;
  text-align: center;
  font-size: 20px;
}
span.round-tab i {
  color: #555555;
}
.wizard li.active span.round-tab {
  background: #fff;
  border: 2px solid green;
  color: green;
}
.wizard li.active span.round-tab i {
  color: #5bc0de;
}

span.round-tab:hover {
  color: #333;
  border: 2px solid #333;
}

.wizard .nav-tabs > li {
  width: 25%;
  border-bottom: 0px;
  margin-bottom: 0px;
}

.wizard .nav-tabs > li a {
  margin: 0 auto;
  border-radius: 0;
  padding: 0;
  border: none;
}

.wizard .nav-tabs > li a:hover {
  background: transparent;
}

.wizard .tab-pane {
  position: relative;
  padding-top: 20px;
}

.wizard h3 {
  margin-top: 0;
}

@media (max-width: 585px) {
  .wizard {
    width: 90%;
    height: auto !important;
  }

  span.round-tab {
    font-size: 16px;
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .wizard .nav-tabs > li a {
    width: 50px;
    height: 50px;
    line-height: 50px;
  }

  .wizard li.active:after {
    content: " ";
    position: absolute;
    left: 35%;
  }
}
.btn-file {
  position: relative;
  overflow: hidden;
  color: #006dff;
}
.btn-file input[type="file"] {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 100%;
  min-height: 100%;
  font-size: 999px;
  text-align: right;
  filter: alpha(opacity=0);
  opacity: 0;
  background: red;
  cursor: inherit;
  display: block;
}
input[readonly] {
  background-color: white !important;
  cursor: text !important;
}
.input-group-btn:first-child > .btn,
.input-group-btn:first-child > .btn-group {
  margin-right: 0px !important;
}

@media screen and (max-width: 960px) {
  #form-vss-update-fw #requestButton,
  #form-vss-update #uploadImages {
    font-size: 5vw;
    width: 100%;
  }
  .btn-default {
    background-color: transparent;
    border-color: transparent;
  }
  .btn {
    border: 0px solid transparent;
    border-radius: 4px;
  }
  .form-control {
    height: 46px;
  }
  .input-group-btn:last-child > .btn,
  .input-group-btn:last-child > .btn-group {
    height: 46px;
  }
  .form_request {
    background: #efefef;
    padding: 40px 15px 10px 15px !important;
    margin-bottom: 80px;
  }
  .nav-tabs {
    border-bottom: 1px solid #ddd;
    margin: 0 -15px !important;
  }
  .form-group {
    margin-bottom: 15px;
    overflow: hidden;
    position: relative;
  }
  .header_vss {
    display: none;
  }
  #header a {
    font-size: 16px !important;
  }
  #header button {
    color: blue;
  }
  #header div.dropdown-menu {
    display: none;
  }
  .new-request-title {
    font-size: 18px;
  }
}

/* Nam thêm loading */
.busy {
  animation: spin 1s infinite linear;
  display: inline-block;
  font-weight: bold;
  font-family: sans-serif;
  font-size: 50px;
  font-style: normal;
  color: #005ba9;
}

.busy::before {
  content: "\25E0";
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(359deg);
  }
}
.form-group.required .control-label:after {
  content: "*";
  color: red;
}

.has-search .form-control-feedback {
  right: initial;
  left: 0;
  color: #ccc;
}

.has-search .form-control {
  padding-right: 12px;
  padding-left: 34px;
}

@media (max-width: 767px) {
  .modal-fullscreen {
    padding: 0 !important;
  }
  .modal-fullscreen {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .modal-fullscreen .modal-content {
    height: auto;
    min-height: 100%;
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
  }
}
@media (max-width: 991px) {
  .modal-fullscreen {
    padding: 0 !important;
  }
  .modal-fullscreen {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .modal-fullscreen .modal-content {
    height: auto;
    min-height: 100%;
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
  }
}
@media (max-width: 1199px) {
  .modal-fullscreen {
    padding: 0 !important;
  }
  .modal-fullscreen {
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
  }
  .modal-fullscreen .modal-content {
    height: auto;
    min-height: 100%;
    border: 0 none;
    border-radius: 0;
    box-shadow: none;
  }
}
.modal-fullscreen {
  padding: 0 !important;
}
.modal-fullscreen {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
}
.modal-fullscreen .modal-content {
  height: auto;
  min-height: 100%;
  border: 0 none;
  border-radius: 0;
  box-shadow: none;
}


