/* Colors */
:root {
    --theme-red : red;
    --theme-secondary-grey: #8c949c;
    --theme-primary-blue: #286df5;
    --theme-white: white;
    --theme-green: #23c994;
    --theme-grey: grey;
    --theme-default: #293031;
    --theme-dim-blue: #2a4d75;
    --theme-faded-blue: #0e51c1;
    --theme-shade: rgba(230, 236, 239, 0.4);
    --theme-black: black;
    --theme-grey-shade: #dfedff;
    --theme-grey-light: #f0f7ff;
    --theme-grey-bg: #f6faff;
    --theme-grey-shadow:#ebebeb;
    --theme-dark: #110f46;
    --theme-silver: #808890;
    --theme-light-grey: #f8f8f8;
    --theme-light: #a3afba;
    --theme-dark-green: rgba(0, 180, 0, 0.2);
    --theme-dark-red: #d32f2f;
    --theme-green: #048103;
    --theme-light-blue: #f4f8ff;
    --theme-dim: #cedae9;
    --theme-secondary-blue: rgba(63, 91, 138, 0.4);
    --theme-primary-grey: #2e3738;
    --theme-tertiary-blue: #f9fbff;
    --theme-black-light: rgba(17, 30, 53, 0.4);
    --theme-bg: #e4edff;
    --theme-grey-border: #e6ecef;
    --theme-dissolved-grey: #F2F2F2;
    --theme-bright-yellow: #FFD067;
    --theme-yellow: #FFBF43;
    --theme-dissolved-blue: #B9D3FF;
    --theme-background-color: #323234;
    --theme-shadowed: rgba(0, 94, 180, 0.13);
    --theme-dissolved-silver: #586668;
    --theme-faded: rgba(255, 255, 255, 0.5);
}
/* Body */
body{
    min-width: 320px;
    color: var(--theme-default);
}
/* Page Layout */
body.gammanet-page-layout{
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    min-height: 100vh;
}
/* Primary button */
button.primary-btn{
    border-radius: 30px;
    padding: 11px 20px;
    background: var(--theme-primary-blue);
    color: var(--theme-white);
    font-weight: 500;
    outline: none;
    border: none;
}
/* common yellow btn */
button.common-yellow-btn{
    border-radius: 30px;
    padding: 11px 20px;
    background: var(--theme-yellow);
    color: var(--theme-white);
    font-weight: 500;
    outline: none;
    border: none;
}
.zero-margin-padding{
    margin: 0px;
    padding: 0px;
}

/* Primary Input with optional placeholder text*/
.primary-input{
    width: 100%;
    border-top: none;
    border-right: none;
    border-left: none;
    border-bottom: 1px solid var(--theme-secondary-grey);
    padding: 7px 0px;
}
.primary-input:focus{
    outline: none;
    border-bottom: 1px solid var(--theme-primary-blue);
}
.primary-input.error-input{
    border-bottom: 1px solid var(--theme-red);
}
div.input-placeholder{
    font-size: 12px;
    color: var(--theme-secondary-grey);
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6px;
}
/* Success message */
#success-message-text{
    color: var(--theme-green);
    font-weight: 500;
    visibility: hidden;
}

/* Underlined Title */
.content-title{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.content-title-underline{
    height: 4px;
    width: 100px;
    background: var(--theme-primary-blue);
}
.title-text{
    font-size: 36px;
	font-weight: 300;
    color: var(--theme-default);
    margin-bottom: 14px;
}
.title-text.large{
    font-size: 48px;
	font-weight: 300;
    color: var(--theme-default);
    margin-bottom: 14px;
}

/* Underlined Title (White)*/
.content-title.light{
    display: flex;
    align-items: center;
    flex-direction: column;
}
.content-title-underline.light{
    height: 4px;
    width: 100px;
    background: var(--theme-white);
}
.title-text.light{
    font-size: 36px;
	font-weight: 300;
    color: var(--theme-white);
}
/* Disabled Item */
.disabled-item{
    opacity: 0.5;
    pointer-events: none;
}

/* Internal links */
.internal-link{
    font-weight: 500;
    color: var(--theme-primary-blue);
    cursor: pointer;
}
.internal-link:hover{
    color: var(--theme-primary-blue);
}

/* All Popup common layout */
.popup_cont{
	position: fixed;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	width: 100%;
	height: 100%;
	display: table;
	z-index: 999999999999;
	opacity: 0;
	visibility: hidden;
	-o-transition: 0.5s ease all;
	-webkit-transition: 0.5s ease all;
	-moz-transition: 0.5s ease all;
	transition: 0.5s ease all;
}
.popup_cont.active{
	opacity: 1;
	visibility: visible;
}
.popup_cont:after{
	position: absolute;
	content: '';
	width: 100%;
	height: 100%;
	left: 0;
	top: 0;
	opacity: 0.74;
	-webkit-backdrop-filter: blur(5px);
	backdrop-filter: blur(5px);
	background-color: #293031;
}
.popup_cont .inner_wrap{
	display: table-cell;
	vertical-align: middle;
	text-align: center;
	position: relative;
	z-index: 9;
	background: transparent;
}
.popup_cont .close_button{
	position: absolute;
	right: 30px;
	top: 30px;
	z-index: 9;
}
.popup_cont .inner_wrap .inner_content{
	margin: 0 auto;
	background: #fff;
	position: relative;
	border-radius: 32px;
	padding-bottom: 10px;
}
.popup_cont .inner_wrap .inner_content .title{
	height: 80px;
	display: flex;
	align-items: center;
	justify-content: center;
	background-color: #286df5;
	border-top-right-radius: 30px;
	border-top-left-radius: 30px;
}
.side-arrow{
    height: 400px;
}
@media only screen and (max-width: 750px){
    .side-arrow{
        height: 300px;
    }
}
@media only screen and (min-width: 521px) and (max-width: 1200px){
    /* All Popup common layout */
	.popup_cont .inner_wrap .inner_content{
		width: 90%;
    }

    /* Underlined Title */
    .title-text.large,
    .title-text.light,
    .title-text{
        font-size: 32px;
    }
}
@media only screen and (max-width: 520px){
    .side-arrow{
        height: 200px;
    }
    /* All Popup common layout */
	.popup_cont .inner_wrap .inner_content{
		width: 90%;
    }

    /* Underlined Title */
    .title-text.large,
    .title-text.light,
    .title-text{
        font-size: 24px;
    }
}
