/*
 * Note that this is toastr v2.1.3, the "latest" version in url has no more maintenance,
 * please go to https://cdnjs.com/libraries/toastr.js and pick a certain version you want to use,
 * make sure you copy the url from the website since the url may change between versions.
 * */


#toast-container .toast-title {
  font-weight: bold !important;
}

#toast-container .toast-message {
  -ms-word-wrap: break-word !important;
  word-wrap: break-word !important;
}

#toast-container .toast-message a,
#toast-container .toast-message label {
  color: #ffffff !important;
}

#toast-container .toast-message a:hover {
  color: #ffffff !important;
  text-decoration: none !important;
}

#toast-container .toast-close-button {
  position: relative !important;
  right: -0.3em !important;
  top: -0.3em !important;
  float: right !important;
  font-size: 20px !important;
  font-weight: bold !important;
  color: #FFFFFF !important;
  -webkit-text-shadow: 0 1px 0 #ffffff !important;
  text-shadow: 0 1px 0 #ffffff !important;
  opacity: 0.8 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80) !important;
  filter: alpha(opacity=80) !important;
  line-height: 1 !important;
}

#toast-container .toast-close-button:hover,
#toast-container .toast-close-button:focus {
  color: #000000 !important;
  text-decoration: none !important;
  cursor: pointer !important;
  opacity: 0.4 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40) !important;
  filter: alpha(opacity=40) !important;
}

#toast-container .rtl .toast-close-button {
  left: -0.3em !important;
  float: left !important;
  right: 0.3em !important;
}

/*Additional properties for button version
  iOS requires the button element instead of an anchor tag.
  If you want the anchor version, it requires `href="#"`.*/
#toast-container button.toast-close-button {
  padding: 0 !important;
  cursor: pointer !important;
  background: transparent !important;
  border: 0 !important;
  -webkit-appearance: none !important;
}

.toast-top-center {
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

.toast-bottom-center {
  bottom: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

.toast-top-full-width {
  top: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

.toast-bottom-full-width {
  bottom: 0 !important;
  right: 0 !important;
  width: 100% !important;
}

.toast-top-left {
  top: 12px !important;
  left: 12px !important;
}

.toast-top-right {
  top: 12px !important;
  right: 12px !important;
}

.toast-bottom-right {
  right: 12px !important;
  bottom: 12px !important;
}

.toast-bottom-left {
  bottom: 12px !important;
  left: 12px !important;
}

#toast-container {
  position: fixed !important;
  z-index: 999999 !important;
  pointer-events: none !important;
  /*overrides*/
}

#toast-container * {
  border-radius: 50px !important;
  -moz-box-sizing: border-box !important;
  -webkit-box-sizing: border-box !important;
  box-sizing: border-box !important;
}

#toast-container>div {

  position: relative !important;
  pointer-events: auto !important;
  overflow: hidden !important;
  margin: 0 0 6px !important;
  padding: 15px 15px 15px 50px !important;
  width: 300px !important;
  -moz-border-radius: 3px 3px 3px 3px !important;
  -webkit-border-radius: 3px 3px 3px 3px !important;
  border-radius: 3px 3px 3px 3px !important;
  background-position: 15px center !important;
  background-repeat: no-repeat !important;
  /* -moz-box-shadow: 0 0 12px #999999 !important;
    -webkit-box-shadow: 0 0 12px #999999 !important;*/
  box-shadow: 0 0 12px #999999 !important;
  color: #000000 !important;
  opacity: 1 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80) !important;
  filter: alpha(opacity=80) !important;
}

#toast-container>div.rtl {

  direction: rtl !important;
  padding: 15px 50px 15px 15px !important;
  background-position: right 15px center !important;
}

#toast-container>div:hover {
  -moz-box-shadow: 0 0 12px #000000 !important;
  -webkit-box-shadow: 0 0 12px #000000 !important;
  box-shadow: 0 0 12px #000000 !important;
  opacity: 1 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100) !important;
  filter: alpha(opacity=100) !important;
  cursor: pointer !important;
}

#toast-container>.toast-info {
  background-image: url("./images/info.png") !important;
}

#toast-container>.toast-error {
  background-image: url("./images/error.png") !important;
}

#toast-container>.toast-success {
  background-image: url("./images/checked.png") !important;
}

#toast-container>.toast-warning {
  background-image: url("./images/danger.png") !important;
}

#toast-container.toast-top-center>div,
#toast-container.toast-bottom-center>div {
  width: 300px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#toast-container.toast-top-full-width>div,
#toast-container.toast-bottom-full-width>div {
  width: 96% !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

#toast-container .toast {
  background-color: #030303 !important;
}

#toast-container .toast-success {
  border-radius: 8px !important;
  background-color: #ffffff !important;
  border-left: 10px solid #51A351;
}

#toast-container .toast-error {
  border-radius: 8px !important;
  background-color: #f5f5f5 !important;
  border-left: 10px solid #BD362F !important;
}

#toast-container .toast-info {
  border-radius: 8px !important;
  background-color: #ffffff !important;
  border-left: 10px solid #2F96B4 !important;
}

#toast-container .toast-warning {
  border-radius: 8px !important;
  background-color: #ffffff !important;
  border-left: 10px solid #fae13c !important;
}

#toast-container .toast-progress {
  position: absolute !important;
  left: 0 !important;
  bottom: 0 !important;
  height: 4px !important;
  background-color: #000000 !important;
  opacity: 0.4 !important;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40) !important;
  filter: alpha(opacity=40) !important;
}

/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container>div {
    padding: 8px 8px 8px 50px !important;
    width: 11em !important;
  }

  #toast-container>div.rtl {
    padding: 8px 50px 8px 8px !important;
  }

  #toast-container .toast-close-button {
    right: -0.2em !important;
    top: -0.2em !important;
  }

  #toast-container .rtl .toast-close-button {
    left: -0.2em !important;
    right: 0.2em !important;
  }
}

@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container>div {
    padding: 8px 8px 8px 50px !important;
    width: 18em !important;
  }

  #toast-container>div.rtl {
    padding: 8px 50px 8px 8px !important;
  }

  #toast-container .toast-close-button {
    right: -0.2em !important;
    top: -0.2em !important;
  }

  #toast-container .rtl .toast-close-button {
    left: -0.2em !important;
    right: 0.2em !important;
  }
}

@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container>div {
    padding: 15px 15px 15px 50px !important;
    width: 25em !important;
  }

  #toast-container>div.rtl {
    padding: 15px 50px 15px 15px !important;
  }
}