@charset "utf-8";
/* CSS Document */



/* RESET RULES 
–––––––––––––––––––––––––––––––––––––––––––––––––– */
:root {
  --lightgray: #000000;
  --blue: steelblue;
  --white: #fff;
  --black: rgba(0, 0, 0, 0.9);
  --bounceEasing: cubic-bezier(0.51, 0.92, 0.24, 1.15);
}

* {
  padding: 0;
  margin: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  cursor: pointer;
  background: transparent;
  border: none;
  outline: none;
  font-size: inherit;
}


.btn-group {
  text-align: center;
}

.open-modal {
  /*font-weight: bold;*/
  /*background: var(--blue);*/
  color: #afafaf;
  /*padding: 0.75rem 1.75rem;*/
  padding-left: 10px;
  border-radius: 5px;
}
.open-modal:hover {
  color: #e13452;

}


/* MODAL
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: var(--black);
  cursor: pointer;
  visibility: hidden;
  opacity: 0;
  transition: all 0.35s ease-in;
	z-index: 99999
}

.modal.is-visible {
  visibility: visible;
  opacity: 1;
}
.modal-content {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
    pointer-events: auto;
    background-color: #000;
    background-clip: padding-box;
    /* border: 1px solid rgba(0,0,0,.2); */
    border-radius: 0.3rem;
    outline: 0;
	margin-top: -24px;
}
.modal-dialog {
  position: relative;
  max-width: 900px;
  max-height: 80vh;
  border-radius: 5px;
  background: var(--white);
  overflow: auto;
  cursor: default;
}

.modal-dialog > * {
  padding: 1rem;
}
/*
.modal-body{
  	/*height: 100px;*/
	/*height: 500px;*/
 	/*width: 100%;*/
	/*position: relative;
	max-height: 80vh;
	max-width: 900px;
	border-radius: 5px;
	/*background: var(--white);*/
	/*overflow: auto;
  	overflow-y: auto;
	cursor: default;
}
*/
.modal-body{
  	/*height: 100px;*/
	/*height: 500px;*/
 	/*width: 100%;*/
	position: relative;
	max-height: 80vh;
	max-width: 900px;
}
.modal-header,
.modal-footer {
  background: var(--lightgray);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
 color: var(--white);
}

.modal-header .close-modal {
  font-size: 1.5rem;
}

.close-modal {
  	font-size: 1.5rem;
	font-weight; 
	color: #ffffff;
}
.close-modal:hover {
	color: #CC0909;
}

.modal p + p {
  margin-top: 1rem;
}


/* SLIDE LEFT ANIMATION
–––––––––––––––––––––––––––––––––––––––––––––––––– */
[data-animation="slideInOutLeft"] .modal-dialog {
  opacity: 0;
  transform: translateX(-100%);
  transition: all 0.5s var(--bounceEasing);
}

[data-animation="slideInOutLeft"].is-visible .modal-dialog {
  opacity: 1;
  transform: none;
  transition-delay: 0.2s;
}


/* FOOTER
–––––––––––––––––––––––––––––––––––––––––––––––––– */
.page-footer {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
}

.page-footer span {
  color: #e31b23;
}

/***   YOUTUBE   **/

