/*
Theme Name: Codebyday
Theme URI: https://tncthemes.com
Author: Codebyday
Author URI: https://tncthemes.com
Description: Theme Codebyday - Trang đăng ký/landing.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: codebyday
*/


.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  opacity: 0;
  transition: opacity .15s linear;
  text-align: center;
}
.modal.show {
  display: block;
  opacity: 1;
}
.modal-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgb(0, 0, 0, 0.88);
}
.modal-dialog {
  position: relative;
  width: 500px;
  max-width: 90%;
  top: 50%;
  margin: 0 auto;
  pointer-events: none;
  transition: -webkit-transform .3s ease-out;
  transition: transform .3s ease-out;
  transition: transform .3s ease-out,-webkit-transform .3s ease-out;
  -webkit-transform: translate(0,-50px);
  transform: translate(0,-50px);
}
.modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.modal-content {
  position: relative;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  border-radius: .3rem;
  outline: 0;
  padding: 20px 15px;
  background-color: #000;
  border: 2px solid #fff;
}
.modal-title {
  width: 100%;
  display: inline-block;
  color: #f2e200;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
}
.modal-body {
  color: #fff;
  padding: 0;
  line-height: 1.3;
  padding: 1rem 0;
}
.modal-content .close {
  position: absolute;
  right: -4%;
  bottom: 104%;
  z-index: 2;
  color: #f2e200;
  font-size: 1.5rem;
  font-weight: bold;
  cursor: pointer;
}
button {
	cursor: pointer;
}