.table td,
.table th {
  vertical-align: middle !important;
}

.table th {
  border-top: none;
}

.btn-pillow {
  background-color: #419dd0;
  border-color: #419dd0;
  color: white;
}

.color-pillow {
  color: #419dd0;
}

.paginate_button a {
  background-color: #f6f7f9 !important;
  border-color: #f6f7f9 !important;
}

.paginate_button.active a {
  background-color: #419dd0 !important;
  border-color: #419dd0 !important;
}

.catalogDropdown button {
  color: #040608 !important;
  background-color: transparent !important;
  font-weight: bold;
  border-radius: 0;
  border: none;
  border-bottom: 3px solid #040608;
}

.catalogDropdown button:focus {
  box-shadow: none !important;
}
.mockupBox{
  position: relative;
}
.mockupBox__footer {
  display: flex;
  padding: 16px 0;
  background-color: #2c3941;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  font-weight: bold;
}

.mockupBox__imageWrapper {
  position: relative;
  height: 285px;
  overflow: hidden;
}

.mockupBox__imageWrapper img {
  width: 100%;
}

.mockupBox__imageWrapper:hover div {
  opacity: 1;
}

.mockupBox__imageWrapper div {
  opacity: 0;
  position: absolute;
  height: 100%;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.65);
  top: 0;
  left: 0;
  transition: all 0.2s ease-in;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.mockupBox__imageWrapper button {
  color: black;
  margin-bottom: 10px;
  width: 70%;
  background-color: #ffffff;
}

.mockupBox__imageWrapper button.added,
.mockupBox__imageWrapper button.added:hover {
  background-color: #61aadd;
  color: white;
  cursor: text;
}

.mockupBox__imageWrapper button:hover {
  background-color: #ffffff;
}

@media only screen and (max-width: 992px) {
  .searchMockups {
    margin-top: 40px;
  }
}

/*Checkbbox slider*/

.switch {
  position: relative;
  display: inline-block;
  width: 40px;
  height: 20px;
  margin: 0 !important;
}

.switch input {
  display: none;
}

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

.slider:before {
  position: absolute;
  content: "";
  height: 100%;
  width: 20px;
  left: 0px;
  bottom: 0px;
  background-color: white;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}

input:checked+.slider {
  background-color: #61aadd;
}

input:focus+.slider {
  box-shadow: 0 0 1px #61aadd;
}

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

/* Rounded sliders */

.slider.round {
  border-radius: 34px;
}

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

.tableImage {
  width: 120px;
  height: 120px;
}

@media only screen and (max-width: 900px) {
  .tableImage {
    width: 100px;
    height: 100px;
  }
}

/* wrapper around spinner image */

.spinnerContainer {
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;
  position: absolute;
  top:0;
  left: 0;
  background-color: rgba(0,0,0,.40);
  z-index: 1000000;
}

 .mySpinner {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 3px solid #2196f3;
  border-left: none;
  border-right: none;
  animation: rotate 2s infinite;
  position: relative;
}

 .mySpinner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60%;
  height: 60%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  border: 5px solid #2196f3;
  border-top: none;
  border-bottom: none;
  /* animation: rotate 1s infinite;
    animation-direction: alternate;
    transform-origin: 50% 50%; */
}

.btn-dissaprove {
  background-color: #F5999C;
  border: 1px solid #B04632;
  color: white;
}

.btn-approve {
  background-color: #40B976;
  border: 1px solid darkgreen;
  color: white;
}

.editIcon {
  height: 16px;
  width: 16px;
  cursor: pointer;
}

.fontBig {
  font-size: 1.3rem;
}

.cpointer {
  cursor: pointer;
}

.dropdown-item:active ,.dropdown-item.active{
  color: #fff;
  text-decoration: none;
  background-color: #419dd0;
}
.buttonWithSpinner{
  position: relative;
}

.buttonWithSpinner img {
  position: absolute;
  top: 50%;
  left:50%;
  transform:translate(-50%,-50%);
  width: 80px;
  height: 80px;
  display: none;
}

#editMockupModal .modal-content, #showHRSImage .modal-content{
  position: absolute;
}
.typesDropdown{
  height: 250px;
  overflow-y: auto;
}

.pagination .active a{
  color:white!important;
  background-color: #419dd0!important; 
};

.pagination .disabled a{
  background-color:#f6f7f9;
}

.expressLine{
  display: flex;
  align-items: center;
  justify-content: center;
  padding:5px 10px;
  color:#B50C0D;
  background-color: #dea900;
  font-weight: bold;
  position: absolute;
  bottom: 0;
  width: 100%;
}

.expressLine img{
  width:16px;
  height: 16px;
  margin-right: 5px;
}
.admin_description img{
  width: 100px;
  height: 100px;
}
@keyframes rotate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}