/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */
@import url('https://fonts.googleapis.com/css?family=Fredoka+One');

[class*="gtarcountry"] {
    display:none !important;
}

/*country alert - begin*/
.alert-container {
	position:fixed;
        height: 100%;        
        left: 0;
        top: 0;
        z-index: 999999999999999999;
        background: rgb(255, 255, 255, 0.5);
        overflow: hidden;
        padding: 10% 10%;
}

.alert {
	background:grey;
	padding: 20px 30px;
	font-family: 'Fredoka One', cursive;
	color:#FFF;
	font-size: 1em;
	border-radius:4px;
	position:relative;
	transition: .2s all;
	border-bottom: 0px rgba(0,0,0,0.5) solid;
	border-top: 0px rgba(0,0,0,0.2) solid;
	cursor:pointer;
}

.alert.alert-red {
	background: #f53d3d;
}

.alert .alert-body {
	margin-left:50px;
        text-align: left;
        font-size: 18px;
}

.alert-body .flag {
        margin-top: -0.3em;
}

.alert .icon {
        font-family: 'Material Icons';
        font-style: normal;
	font-size:7em;
	position:absolute;
	left:20px;
	top:50%;
	transform: translateY(-50%);
}

.alert:active, .alert.active {
	box-shadow: 0 2px 5px 4px rgba(0,0,0,0.2) inset;
	border-bottom-width: 0;
	margin-top:6px;
}
/*country alert - end*/