﻿.show-modal{
    background-color: transparent;
    margin: auto;
    top:  5%;
}


/*.show-modal{
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    border-radius: 5px;
    -webkit-box-shadow: 0 8px 8px 0 rgba(22, 22, 22, 0.2);
    box-shadow: 0 8px 8px 0 rgba(22, 22, 22, 0.2);
}*/

.modal-background{
    display: none;
}

.modal-background-show{
    z-index: 22;
    display: block;
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,6,11,0.6);
}

.between{
    -webkit-flex-grow: 1;
}

.modal{
    -webkit-border-radius: 0px;
    border-radius: 0px;
    word-break:break-all;   
    padding: 0px;

}

.shrinkmodal{
    animation: shrinkModal 0.3s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.blowUpModal{
     animation: blowUpModal 0.3s;
}

.fadeout{
    -webkit-animation: fadeout 0.5s;
   -moz-animation: fadeout 0.5s;
   -o-animation: fadeout 0.5s;
    animation: fadeout 0.5s;
}

.fadein{
    -webkit-animation: fadein 0.5s;
   -moz-animation: fadein 0.5s;
   -o-animation: fadein 0.5s;
    animation: fadein 0.5s;
}

@keyframes blowUpModal {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}

/** fadein animation**/

@keyframes fadein {
    0%   {  background-color: rgba(0, 0, 0, 0); }
    100% {  background-color:  rgba(0,6,11,0.6); }
  }
  @-o-keyframes fadein{
    0%   {  background-color: rgba(0, 0, 0, 0); }
    100% {  background-color:  rgba(0,6,11,0.6); }
  }
  @-moz-keyframes fadein{
    0%   {  background-color: rgba(0, 0, 0, 0); }
    100% {  background-color:  rgba(0,6,11,0.6); }
  }
  @-webkit-keyframes fadein{
    0%   {  background-color: rgba(0, 0, 0, 0); }
    100% {  background-color:  rgba(0,6,11,0.6); }
  }
  /** end fadein **/

/** fadeout animation**/
@keyframes fadeout {
   0%   { background-color:  rgba(0,6,11,0.6); }
  100% { background-color: rgba(0, 0, 0, 0); }
}
@-o-keyframes fadeout{
  0%   { background-color:  rgba(0,6,11,0.6); }
  100% { background-color: rgba(0, 0, 0, 0); }
}
@-moz-keyframes fadeout{
  0%   { background-color:  rgba(0,6,11,0.6); }
  100% { background-color: rgba(0, 0, 0, 0); }
}
@-webkit-keyframes fadeout{
  0%   { background-color:  rgba(0,6,11,0.6); }
  100% { background-color: rgba(0, 0, 0, 0); }
}

/**end fadeout **/

.cross{
    position: absolute;
    top: 12px;
    right: 10px;
}
.cross:hover{
    cursor: pointer;
}
.modal-content{
    position: relative;
}







