/*=============== VARIABLES CSS ===============*/
:root {
  --big-font-size: 1.3rem;
  --normal-font-size: .938rem;
  --z-modal: 100000;
}

@media screen and (min-width: 968px) {
  :root {
    --big-font-size: 1.3rem;
    --normal-font-size: 1rem;
  }
}

.qfurs-modal__container{
  position: fixed;
  top: 0;
  left: 0;
  background-color: #0000009e;
  width: 100%;
  height: 100%;
  display: grid;
  align-items: flex-end;
  overflow: hidden;
  transition: all .3s;
  z-index: var(--z-modal);
  visibility: hidden;
  opacity: 0;

  /*=== Effect 3 ===*/
  /* perspective: 1000px; */
}

.qfurs-modal__content{
  position: relative;
  background-color: #ffffff;
  text-align: center;
  padding: 3rem 2rem 2rem;
  border-radius: 3px 3px 0 0;
  transition: all .3s;

  /*=== Effect 1 ===*/
  transform: translateY(10%);

  /*=== Effect 2 ===*/
  /* transform: scale(.5) translateY(10%); */

  /*=== Effect 3 ===*/
  /* transform: rotateX(65deg) scale(.75) translateY(10%);
  transform-origin: 50% 100%; */
}

/* Show modal */
.qfurs-show-modal {
  visibility: visible;
  opacity: 1;
}

.qfurs-show-modal .qfurs-modal__content {
  /*=== Effect 1 ===*/
  transform: translateY(0);

  /*=== Effect 2 ===*/
  /*transform: scale(1) translateY(0);*/

  /*=== Effect 3 ===*/
  /* transform: rotateX(0) scale(1) translateY(0); */
}

/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (min-width: 576px){
  .qfurs-modal__content{
	  margin: auto;
	  width: 380px;
	  border-radius: 3px
  }
}

.qfurs-modal__close {
	display: inline-flex;
	background-color: #000000;
	border-radius: 3px;
	color: #ffffff;
	font-size: 1rem;
	position: absolute;
	top: 5px;
	right: 5px;
	cursor: pointer;
	line-height: 1;
	padding: 1px 5px 2px;
	transition: 0.4s;
}
.qfurs-modal__close:hover {
	background-color: #ffffff;
	color: #000000;}

.modal__title{
	font-size: var(--big-font-size);
	font-weight: 500;
	text-transform: uppercase;
}