* { box-sizing: border-box; }

body {
	background: #fff;
	height: 100%;
	overflow-y: hidden;
}

.wrapper {
    height: 100vh;
	position: relative;
	padding: 1.5vmin;
}

.carousel {
	height: 100%;
}

.carousel-cell {
  	width: 85%;
  	margin-right: 10px;
  	opacity: 0;
  	transition: all 0.2s; 
  	display: flex;
	justify-content: center;
	align-items: center;
	height: 100vh;
}

.is-selected{
	opacity: 1;
	transition: all 0.2s;
}

.flickity-button {
	background: transparent;
	color: #888;
	transition: all 0.2s;
}

.flickity-button:hover {
	background-color: #fac564;
}

.flickity-prev-next-button {
    top: 50%;
    width: 50px;
    height: 50px;
	border-radius: 50%;
	background: transparent;
    transform: translateY(-50%);
}
.flickity-prev-next-button:hover {
	background: #fac564;
}

.flickity-page-dots {
	margin-bottom: 25px;
	padding: 10px;
}

.flickity-page-dots .dot {
	background: #888;
	width: 20px;
	height: 20px;
	opacity: 0.3;
}
.flickity-page-dots .dot:hover {
	background: #fac564;
	opacity: 1;
}

.scard-image {
	height: 40vmin;
	border-radius: 20px;
	object-fit: cover;
}

.scard-text {
	margin-top: 3vmin;
}

.scard-text-0 {
    font-size: 2.8vmin;
    line-height: 3.5vmin;
  }

.scard-text-1 {
	font-size: 3vmin;
	line-height: 3.5vmin;
  }
  
.scard-text-2 {
	font-size: 4vmin;
	line-height: 4.5vmin;
}

.scard-text-3 {
	font-size: 5vmin;
	line-height: 5.5vmin;
}

.scard-text-4 {
	font-size: 6vmin;
	line-height: 6.5vmin;
}

.scard-text-5 {
    font-size: 6.5vmin;
    line-height: 6.5vmin;
  }
  
  .scard-text-6 {
    font-size: 7vmin;
    line-height: 7vmin;
  }
  
  .scard-text-7 {
    font-size: 9vmin;
    line-height: 9vmin;
  }
  
  .scard-text-8 {
    font-size: 10vmin;
    line-height: 10vmin;
    padding: 1.75vmin;
  }
  
  .scard-text-9 {
    font-size: 11.5vmin;
    line-height: 11.5vmin;
    padding: 1.75vmin;
  }
  
  .scard-text-10 {
    font-size: 14vmin;
    line-height: 13vmin;
    padding: 1.75vmin;
  }
  
.scard-answer {
	color: #0A91AB;
	opacity: 0;
	transition: opacity 0.2s;
}

.btn-cta {
    font-size: 3.5vmin;
    font-family: "Bree Serif", serif;
    padding: 0.5vmin 4vmin;
    border-radius: 60px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 14px -1px rgba(0, 0, 0, 0.2);
    transition: all 0.1s;
    border: 0;
    margin-top: 8vmin;
    vertical-align: middle;
    color: #fff;
    background: rgb(240,56,107);
    background: linear-gradient(0deg, rgba(240,56,107,1) 0%, rgba(240,56,203,1) 100%);
}
.btn-cta:hover,
.btn-cta:focus,
.btn-cta:active,
.btn-cta.active,
.open>.dropdown-toggle.btn-cta {
    outline: none !important;
    box-shadow: 0 6px 7px 2px rgba(0, 0, 0, 0.4), 0 6px 15px 5px rgba(0, 0, 0, 0.22), 0 8px 10px -5px rgba(0, 0, 0, 0.3);
    color: #fff;
    background: rgb(240,56,107);
    background: linear-gradient(0deg, rgb(219, 53, 100) 0%, rgb(226, 50, 191) 100%);
}

.btn-instructions {
    position: relative;
    display: inline;
    top: 7vmin;
    font-size: 2rem;
    font-family: "Bree Serif", serif;
    padding: 10px 20px;
    border-radius: 4px;
    box-shadow: 0 4px 15px 0 rgba(0, 0, 0, 0.14), 0 1px 10px 0 rgba(0, 0, 0, 0.12), 0 2px 14px -1px rgba(0, 0, 0, 0.2);
    border: 0;
    vertical-align: middle;
    background: #2196f3;
    color: #fff;
    cursor: pointer !important;
}

@media only screen and (max-width: 576px) {
    .btn-close-icon {
        margin-top: 8px !important;
    }

    .btn-close,
    .btn-fullscreen,
    .btn-toggle-text,
    .btn-toggle-image {
        margin-top: 8px !important;
        width: 40px !important;
        height: 40px !important;
    }

    .fa-2x {
        font-size: 1.6em;
    }
    
    .scard-text-4 {
        font-size: 8vmin;
        line-height: 7.5vmin;
    }

    .btn-instructions {
        font-size: 1.5rem;
        padding: 8px 18px;
    }

    .flickity-page-dots .dot {
        width: 15px;
        height: 15px;
    }
}