@charset "UTF-8";

/*==============================================================================
 ___  _   _    _
/   || | | |  | |
\__  | | | |  | |  __
/    |/  |/_) |/  /  \_/\/
\___/|__/| \_/|__/\__/  /\_/
              |\
              |/
Focus v1.5
https://github.com/Elkfox/Focus
Copyright (c) 2018 Elkfox Co Pty Ltd
https://elkfox.com
Project lead: George Butter
MIT License
==============================================================================*/

.popup {
    position: fixed;
    z-index: 9996;
    opacity: 0;
    visibility: hidden;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out    
}
.popup .video-container {
    position: relative; 
  padding-bottom: 56.25%;
  overflow: hidden; 
  width: 100%;
  height: auto;
}
.popup .video-container iframe,
.popup .video-container video{
  position: absolute; 
  top: 0; 
  left: 0; 
  width: 100%; 
  height: 100%; 
}
.popup.visible {opacity: 1;visibility: visible;}
.popup .popup-content {
    display: inline-block;
    z-index: 9999;
    width: 100%;
    max-width: 1400px;
    max-height: 100%;
    overflow: visible;
    padding: 0;
    background-color: #fff;
    cursor: default;
    color: #000;
    position: relative;
}
.popup .popup-content::before {
    content:""; border: 2px solid #fff;z-index: -1;
    position: absolute; left: -30px; top: -30px; right: -30px; bottom: -30px;    
}

.popup.overlay {
    background: rgba(0, 43, 85, .7);
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.popup.overlay .popup-outside {
    position: absolute;
    z-index: 9998;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
}
.popup.overlay .popup-inner {
    -webkit-backface-visibility: hidden;
    cursor: pointer;
    z-index: 9997;
    text-align: initial;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: translateY(25px);
    -moz-transform: translateY(25px);
    -ms-transform: translateY(25px);
    transform: translateY(25px);
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-transition: all 0.3s ease-out;
    -moz-transition: all 0.3s ease-out;
    -ms-transition: all 0.3s ease-out;
    transition: all 0.3s ease-out;
    padding: 40px;
}
.popup.overlay .popup-inner .popup-content {
    position: relative;
}
.popup.overlay.visible .popup-inner {
    -webkit-transform: translateY(0px);
    -moz-transform: translateY(0px);
    -ms-transform: translateY(0px);
    transform: translateY(0px);
}
.popup .popup-close {
    display: block;	width: 40px;height: 40px;position: fixed;right: 40px;top: 40px;cursor:pointer;
}
.popup .popup-close::before,
.popup .popup-close::after {
    content:""; position:absolute; left: 50%; top: 50%; 
    width: 56px; height: 2px; background: #fff;
    margin-left: -28px; margin-top: -1px;
}

.popup .popup-close::before {-webkit-transform: rotate(45deg);-moz-transform: rotate(45deg);transform: rotate(45deg)}
.popup .popup-close::after {-webkit-transform: rotate(-45deg);-moz-transform: rotate(-45deg);transform: rotate(-45deg)}