@import 'reset.css';
@import 'layout.css';
@import 'forms.css';
@import 'icons.css';
@import 'links.css';
@import 'animation.css';
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,700;1,800&display=swap');

/*****
Color Guide
#f2f0f7 Extreme light blue
#d7b5e0 Extreme lightviolet

#f6a00a Alert! yellow
*****/

/* Debug Utils*/
/* *{
    border: 1px solid #333333;
} */


/*****
GLOBAL
*****/
html,
body{
    /* 100% Vertical Viewport Layouts*/
    /* this rule should be applied to html, body and wrapper*/
    height: 100%;

    font-family: Nunito, sans-serif;
    font-size: 10px;
    background-color: #f2f0f7;

    /* animation from animation library */
    animation: fadein 1s;
    -moz-animation: fadein 1s; /* Firefox */
    -webkit-animation: fadein 1s; /* Safari and Chrome */
    -o-animation: fadein 1s; /* Opera */
}


/* Colors */
.bk-gray-5{
    background-color: #848484;
}

.fg-gray-5{
    color: #848484;
}


/* Layout */
.container{
    /* height: 100%; */
    max-width: 1200px;
    /* margin: 0 auto; */
    padding: 0 2.1rem;;
}

header{

    /* width: 50%; */

    /* border-image-source: url("bg/ticket_border.png"); */
    /* border-image-slice: 2; */
    /* border-image-repeat: round;  */

    /* left border fallback */
    /* border-right: 1px dashed #f2f0f7; */

    /* padding: 0 3.8rem 0 2.1rem; */
    padding: 0 2.1rem;
    text-align: center;

}

form, #recovery-instruction{
    width: 50%;
    padding-left: 3.8rem;
}

.triggers, .feedback{
    width: 50%;
    padding-right: 3.8rem;
    padding-left: 3.8rem;
}

.label-top-offset{
    top: 0.6rem;
    padding-left: 1.4rem;
}

#tagline{
    font-size: 2.1rem;
    font-weight: 300;
    margin-top: 2.1rem;
    margin-bottom: 2.1rem;
}

/* Notifications */
.notification{
    width: 36.2rem;
    height: 8.4rem;
    background-color: #ffffff;
    border-radius: .9rem;

    /* initial values to be animated */
	left: 10rem;
	visibility: hidden;
	opacity: 0;

	transition: 0.3s; /* 0.5 second transition effect to slide in or slide down the overlay (height or width, depending on reveal) */
}


/* Box properties */
/* borders */
.bb-extreme-light-violet{
    border-bottom: 1px solid #d7b5e0; 
}

.bb-extreme-light-blue{
    border-bottom: 1px solid #9c8bcc; 
}
 
.round-corner-8{
    border-radius: 8px;
}

.bk-blue-violet{
    background-color: #4e3593;
}

.bk-alert{
    background-color: #f6a00a;
}

.bk-extreme-light-violet{
    background-color: #d7b5e0;
}

/* Foregrounds */
.fg-blue-violet{
    color: #4e3593;
}
.fg-extreme-light-blue{
    color: #f2f0f7;
}

.fg-alert{
    color: #f6a00a;
}


#ticket-box{    
    background: url(bg/light_circle.svg) center -3.2rem  no-repeat, linear-gradient(90deg, rgba(114,48,133,1) 0%, rgba(140,72,159,1) 100%);
    background-size: 5.2rem, auto;
}

 
/* Paddings */
.padding-38{
    padding: 38px;
}

.padding-tb-21{
    padding-top: 2.1rem;
    padding-bottom: 2.1rem;
}

.padding-t-21{
    padding-top: 2.1rem;
}

/* Margins */
.mt-21{
    margin-top: 2.1rem;
}

.mr-10{
    margin-right: 1.0rem;
}

.ml-12{
    margin-left: 1.2rem;
}

.mlr-16{
    margin-left: 1.6rem;
    margin-right: 1.6rem;
}

.mr-16{
    margin-right: 1.6rem;
}

/* STYLISH */
.box-shadow {
	/* box-shadow: .3rem 1.2rem .7rem -.3rem rgba(0, 0, 0, 0.15);	 */
	box-shadow: 0 .8rem .6rem 0 rgba(0, 0, 0, 0.15);	
}

.box-shadow-light {
	box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);	
}


/* TYPOGRAPHY */
h1{
    font-size: 5.1rem;
    font-weight: 800;
    font-style: italic;
    padding: 0;  
}

h2{
    font-size: 2.8rem;
    line-height: 3.8rem;
    font-weight: 800;
    color: #4e3593;
    margin-bottom: 1.6rem;
}

p{
    font-size: 1.6rem;
    line-height: 1.3;
}

.text-size-21{
    font-size: 2.1rem;
}

/* text overflow */
.ellipsis{
    /* BOTH of the following are required for text-overflow */
    white-space: nowrap;
    overflow: hidden;

    /* text-overflow: clip; */
    text-overflow: ellipsis;
}


/* Specific rules */
.p-icon-14{
    padding: 2.6rem;
}

.ml-icon-8{
    margin-left: 1.0rem;
}

.z-1{
    z-index: 1;
}