﻿.myModal-open{
    background-color: #fff;
    -webkit-box-shadow: 0 12px 15px 0 rgba(0,0,0,0.24);
    box-shadow: 0 12px 15px 0 rgba(0,0,0,0.24);
    position: fixed;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color:black;
  
    
}



.myModal-Overlay{
    display: none;
}

.myModal-Overlay-open{
    position: fixed; 
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.31);
    z-index: 20;
    display: block;
    
}


.between{
    -webkit-flex-grow: 1;
}


.Modal{
    /**-webkit-transition: -webkit-transform .225s cubic-bezier(0.0,0.0,0.2,1);
    transition: -webkit-transform .225s cubic-bezier(0.0,0.0,0.2,1);
    -webkit-transition: transform .225s cubic-bezier(0.0,0.0,0.2,1);
    transition: transform .225s cubic-bezier(0.0,0.0,0.2,1);**/
    -webkit-border-radius: 2px!important;
    border-radius: 2px!important;
    word-break:break-word!important;   
    padding: 30px !important;

}

.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);
  }
}


/** fadeout **/
@keyframes fadeout {
   0%   { background-color: rgba(0, 0, 0, 0.31); }
  100% { background-color: rgba(0, 0, 0, 0); }
}
@-o-keyframes fadeout{
  0%   { background-color: rgba(0, 0, 0, 0.31); }
  100% { background-color: rgba(0, 0, 0, 0); }
}
@-moz-keyframes fadeout{
  0%   { background-color: rgba(0, 0, 0, 0.31); }
  100% { background-color: rgba(0, 0, 0, 0); }
}
@-webkit-keyframes fadeout{
  0%   { background-color: rgba(0, 0, 0, 0.31); }
  100% { background-color: rgba(0, 0, 0, 0); }
}

/** fadeout **/



/** fadein **/

@keyframes fadein {
  0%   {  background-color: rgba(0, 0, 0, 0); }
  100% {  background-color: rgba(0, 0, 0, 0.31); }
}
@-o-keyframes fadein{
  0%   {  background-color: rgba(0, 0, 0, 0); }
  100% {  background-color: rgba(0, 0, 0, 0.31); }
}
@-moz-keyframes fadein{
  0%   {  background-color: rgba(0, 0, 0, 0); }
  100% {  background-color: rgba(0, 0, 0, 0.31); }
}
@-webkit-keyframes fadein{
  0%   {  background-color: rgba(0, 0, 0, 0); }
  100% {  background-color: rgba(0, 0, 0, 0.31); }
}

.close{
    position: absolute;
    top: 10px;
    right: 10px;
}
.close:hover{
    cursor: pointer;
}
.Modal-content{
    position: relative;
}
/** end fadein **/
.titleModal{
 position: absolute;
 top: 10px;
 left: 10px;
 width: 90%
}