/*------------------------------------*\
  Standard Stores Modal Dialog
\*------------------------------------*/

#sssModalDialogContainer {
  position: fixed;
  z-index: 100000;
  background: rgba(30,36,43, 0.7);
}

#sssModalDialogContainer .sssModalDialog {
    position: fixed;
}

.sssModalDialogContainer.active {
  visibility: visible;
}

.sssModalDialogContainer {
  position: absolute;
  visibility: hidden;
  z-index: 99;
  overflow: hidden;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.sssModalDialog.active {
    overflow: inherit;
    visibility: visible;
    opacity: 1;
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.sssModalDialog {
    position: fixed;
    visibility: hidden;
    top: 50%;
    left: 50%;
    opacity: 0;
    background: #000;
    box-shadow: 0px 0px 70px 0px rgba(0, 0, 0, 0.8);
    -webkit-transform-origin: 50% 50%;
    -moz-transform-origin: 50% 50%;
    -ms-transform-origin: 50% 50%;
    -o-transform-origin: 50% 50%;
    transform-origin: 50% 50%;
    -webkit-transform: scale(0.9);
    -moz-transform: scale(0.9);
    -ms-transform: scale(0.9);
    -o-transform: scale(0.9);
    transform: scale(0.9);
    -webkit-transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    -moz-transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    -o-transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
    transition: transform 0.25s, opacity 0.25s, visibility 0.25s;
}

.sssModalDialogContent {
    position: static !important;
    overflow-y: auto;
}

/*------------------------------------*\
  Standard Stores Scroll to Top
\*------------------------------------*/
#smoothup {
  height: 40px;
  width: 40px;
  position:fixed;
  bottom:50px;
  right:100px;
  text-indent:-9999px;
  display:none;
  background: url("../img/arrow-40.png");
  -webkit-transition-duration: 0.4s;
  -moz-transition-duration: 0.4s; transition-duration: 0.4s;
  border: 0;
  z-index: 999;
}
