* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.toast-container {
  position: fixed;
  top: -500px;
  /* width: 90%; */
  /* max-width: 800px; */
  /* min-height: 600px; */
  display: flex;
  align-items: center;
  background: #000;
  color: white;
  padding: 0;
  border-radius: 8px;
  box-shadow: 0 0 10px white;
  outline: 1px solid white;
  left: 50%;
  transform: translateX(-50%);
  transition: all 1.8s ease;
  z-index: 9999;
}

/* ------------------------------------------------- */
.toast-container-job {
  position: fixed;
  top: 50px;
  left: 85%;
  display: flex;
  float: right;
  background: transparent;
  color: white;
  padding: 0;
  border-radius: 8px;
  border: none !important;
  transform: translateX(-50%);
  transition: all 1.8s ease;
  z-index: 9999;
  
  
}
.toast-container-job .img-modal{
  width:100px;
  height: 30px;
  
}

/* Blink for Webkit and others
(Chrome, Safari, Firefox, IE, ...)
*/

@-webkit-keyframes blinker {
  from {opacity: 1.0;}
  to {opacity: 0.0;}
}
.blink{
	text-decoration: blink;
	-webkit-animation-name: blinker;
	-webkit-animation-duration: 0.6s;
	-webkit-animation-iteration-count:infinite;
	-webkit-animation-timing-function:ease-in-out;
	-webkit-animation-direction: alternate;
}

/* ------------------------------------------------- */


.toast-container video {
  width: 600px;
  height: 340px;
}
.toast-container.active {
  top: 140px;
}
.toast-container h3 {
  font-weight: 800;
  line-height: 1.5;
  font-size: 16px;
  color: white;
}
.toast-container .text-content {
  padding: 12px;
  padding-right: 20px;
}
.toast-container a {
  color: red;
}
.toast-container .image {
  position: relative;
  height: auto;
}
.toast-container .image video {
  position: absolute;
  /* top: 10px; */
  border-radius: 8px;
}

.toast-container button {
  width: 120px;
  position: absolute;
  top: 5%;
  left: 13%;
  transform: translateX(-50%);
  outline: none;
  border: 2px solid white;
  border-radius: 4px;
  padding: 4px 12px;
  background-color: red;
  font-weight: 800;
  animation: modalbtn 1s linear infinite;
}
.toast-container button a {
  color: white;
}
@keyframes modalbtn {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
    /* filter: invert(50%); */
  }
  100% {
    opacity: 0;
  }
}
.toast-container .close {
  position: absolute;
  top: 12px;
  right: 12px;
  cursor: pointer;
  opacity: 1;
}
.toast-container .close img {
  width: 25px;
  border: 1px solid rgb(255, 255, 255);
  border-radius: 50%;
}

@media screen and (max-width: 600px) {
  .toast-container button {
    width: 80px;
    padding: 2px 4px;
    font-size: 12px;
    top: 5%;
    left: 15%;
  }
  .toast-container video {
    width: 300px;
    height: 170px;
  }
  .toast-container .close img {
    width: 20px;
  }
  .toast-container.active {
    top: 100px;
  }
}
