@charset "UTF-8";

/*

Style   : MobApp CSS
Version : 1.0
Author  : Surjith S M
URI     : https://surjithctly.in/

Copyright © All rights Reserved 

*/


/*------------------------
[TABLE OF CONTENTS]
    
1. GLOBAL STYLES
2. NAVBAR
3. HERO
4. TABS
5. TESTIMONIALS
6. IMAGE GALLERY
7. PRICING
8. CALL TO ACTION
9. FOOTER

------------------------*/


/* GLOBAL
----------------------*/

.click-arrow {
	width: 280px;
}

body {
    font-family: 'Rubik', sans-serif;
    position: relative;
}

a {
    color: #5a5a5a;
}

a:hover,
a:focus {
    color: #448AFF;
}

h1 {
    font-size: 40px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 10px;
}

h2 {
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -1px;
    margin-bottom: 1rem;
}

h3 {
    font-size: 24px;
	font-weight: 300;
}

h4 {
    font-size: 20px;
    font-weight: 500;
    color: #633991;
}

h5 {
    font-size: 28px;
    font-weight: 300;
    color: #633991;
    margin-bottom: 0.7rem;
}

p {
    color: #959094;
}

p.lead {
    color: #bbbbbb;
    margin-bottom: 2rem;
}

.text-primary {
    color: #bbbbbb !important;
}

.light-font {
    font-weight: 300;
}
blockquote, figcaption {
	display: block;
    font-size: 0.9em;
    font-style: italic;
}
.btn {
    font-size: 13px;
    font-weight: 400;
    text-transform: uppercase;
    padding: 0.375rem 1.35rem;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    color: #448AFF;
}

.btn-primary {
    border-radius: 3px;
    background-image: -moz-linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    background-image: -webkit-linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    background-image: -ms-linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    background-image: linear-gradient( 122deg, #e54595 0%, #fd378e 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.2);
    font-weight: 500;
    padding: 0.6rem 2rem;
    border: 0;
}

.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:not([disabled]):not(.disabled).active,
.btn-primary:not([disabled]):not(.disabled):active,
.show>.btn-primary.dropdown-toggle {
    background-image: linear-gradient( 122deg, #fd378e 0%, #e54595 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.3);
    color: #FFF;
}

.btn-light {
    border-radius: 3px;
    background: #FFF;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.26);
    font-size: 14px;
    font-weight: 500;
    color: #633991;
    margin: 0.5rem;
    padding: 0.7rem 1.6rem;
    line-height: 1.8;
}

.btn-group-lg>.btn,
.btn-lg {
    padding: 0.8rem 1rem;
    font-size: 15px;
}

.light-bg {
    background-color: #f9f9f9;
}

.section {
    padding: 80px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title small {
    color: #998a9b;
}

@media (max-width:767px) {
    h1 {
        font-size: 28px;
    }
    h2 {
        font-size: 30px;
    }
	.navbar-brand img{
		max-width: 140px!important
	}
	.loginformheader input {
		max-width: 100px;
	}
}

.newtypecontainer {
	position: absolute;
    top: 132px;
    width: 1080px;
    left: 50%;
    margin-left: -540px;
	background: #fff;
    z-index: 999;
}

.newtypecontainer-relative {
	position: inherit;
    margin-bottom: 20px;
    top: 132px;
    width: 1080px;
    left: 50%;
    margin-left: -540px;
	background: #fff;
    z-index: 999;
}
.footer-airplay {
	    height: 60px;
    margin: 0px!important;
    padding: 0px;
    z-index: 9999;
    position: relative;
    line-height: 1;
}

/* NAVBAR
----------------------*/

.nav-menu {
    padding: 0;
    transition: all 0.3s ease;
}

.nav-menu.is-scrolling,
.nav-menu.menu-is-open {
    background-color: #fff;
    /* background: -moz-linear-gradient(135deg, #ffffff 0%, #efefef 100%);
    background: -webkit-linear-gradient(135deg, #ffffff 0%, #efefef 100%);
    background: linear-gradient(135deg, #ffffff 0%, #efefef 100%);
    -webkit-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 5px 23px 0px rgba(0, 0, 0, 0.1); */
}

.nav-menu.is-scrolling {
    padding: 0;
}

.navbar-nav .nav-link {
    position: relative;
}
input#second_captcha {
	display: inline-block;
	width: 40px
}






@media (min-width: 992px) {
    .navbar-expand-lg .navbar-nav .nav-link {
        padding-right: 1rem;
        padding-left: 1rem;
        font-size: 16px;
    }
    .navbar-nav>.nav-item>.nav-link.active:after {
        content: "";
        border-bottom: 2px solid #448AFF;
        left: 1rem;
        right: 1rem;
        bottom: 5px;
        height: 1px;
        position: absolute;
    }
}

@media (max-width:991px) {
    .navbar-nav.is-scrolling {
        padding-bottom: 1rem;
    }
    .navbar-nav .nav-item {
        text-align: center;
    }
}


/* HERO
----------------------*/

header {
    padding: 100px 0 0;
    text-align: center;
    color: #000;
}

header .tagline {
	color: #000
}

header .container {
	margin-bottom: -120px;
    /*padding-top: 170px; */
    padding-top: 20vh;
    z-index: 999;
    position: relative;
}



.bg-gradient {
    background: var(--blue);
}

header.bg-gradient {
	/* 
    background-image: -moz-linear-gradient(135deg, #448AFF 0%, #303F9F 100%);
    background-image: -webkit-linear-gradient(135deg, #448AFF 0%, #303F9F 100%);
    background-image: -ms-linear-gradient(135deg, #448AFF 0%, #303F9F 100%);
    background-image: linear-gradient(135deg, #448AFF 0%, #303F9F 100%);
	*/
	background: #fff
}

.tagline {
    font-size: 20px;
    font-weight: 300;
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
}

.img-holder {
    height: 0;
    padding-bottom: 33%;
    overflow: hidden;
}

@media (max-width:1200px) {
    .img-holder {
        padding-bottom: 50%;
    }
	.navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
	}
}

@media (max-width:767px) {
    .tagline {
        font-size: 12px;
    }
    .img-holder {
        padding-bottom: 100%;
		/* padding-top: 70%; */
    }
	header .container {
		padding-top: 0px;
		margin-bottom: 0px;
		min-height: 26vh;
	}
	.navbar-toggler-icon {
		background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(0, 0, 0, 1)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
	}
	.newtypecontainer {
		position: absolute;
		top: 140px;
		max-width: 100%;
		left: 0%;
		text-align: center;
		margin-left: 0px;
		background: #fff;
		z-index: 999;
	}	
	.form-check {
		margin-left: 8px!important;
	}
	.form-check-label {
		padding-left: 2.25rem!important;
	}
	.btn-outline-dark {
		margin-top: 0em!important;
	}
	header {
		height: auto!important;
	}
	textarea.form-control {
		height: 100px!important;
	}
	.img-fluid {
		max-width: 80%;
	}
	.navbar-nav .form-check {
		position: relative;
		left: 0px;
		float: left;
		margin-top: 0px !important;
		padding-top: 10px;
		width: 100%;
		text-align: left;
		margin-left: 2px !important;
	}
	.login .form-check_login_incorect {
		position: relative;
        width: 100%;
        margin-top: 0px;
        margin-left: 0px;
        margin-bottom: 10px;
	}
}

.services > div {
	margin-bottom: 14px;
    float: left;

}
.services .container {
        padding-top: 0px;
    margin-top: -80px;
}
.card-body {
    padding: 0.40rem 1.25rem;
}
/* FEATURES
----------------------*/

.gradient-fill:before {
    color: #fc73b4;
    background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
    background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
    background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.card.features {
    border: 0;
    /*border-radius: 3px;
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;*/
}

@media (max-width:991px) {
    .card.features {
        margin-bottom: 2rem;
    }
    [class^="col-"]:last-child .card.features {
        margin-bottom: 0;
    }
}

.card.features:before {
   /* content: "";
    position: absolute;
    width: 3px;
    color: #fc73b4;
    background: -moz-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
    background: -webkit-linear-gradient(top, #9477b4 0%, #fc73b4 100%);
    background: linear-gradient(to bottom, #9477b4 0%, #fc73b4 100%);
    top: 0;
    bottom: 0;
    left: 0; */
	content: "";
    position: absolute;
    width: 3px;
    color: #fc73b4;
    top: 0;
    bottom: 0;
    left: 0;
}
.features1:before {
    background: #f33;
}

.features2:before {
    background: #f92;
}

.features3:before {
    background: #11AB11;
}

.features4:before {
    background: #55d;
}



.card-text {
    font-size: 14px;
}

.card.features:hover {
   /* transform: translateY(-3px);
    -moz-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
    -webkit-box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 5px 30px 0px rgba(0, 0, 0, 0.08);*/
}

.box-icon {
    box-shadow: 0px 0px 43px 0px rgba(0, 0, 0, 0.14);
    padding: 10px;
    width: 70px;
    border-radius: 3px;
    margin-bottom: 1.5rem;
    background-color: #FFF;
}

.circle-icon {
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
    padding: 10px;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin-bottom: 1.5rem;
    background-color: #FFF;
    color: #f5378e;
    font-size: 48px;
    text-align: center;
    line-height: 80px;
    font-weight: 300;
    transition: all 0.3s ease;
}

@media (max-width:992px) {
    .circle-icon {
        width: 70px;
        height: 70px;
        font-size: 28px;
        line-height: 50px;
    }
}

.ui-steps li:hover .circle-icon {
    background-image: -moz-linear-gradient( 122deg, #e6388e 0%, #fb378e 100%);
    background-image: -webkit-linear-gradient( 122deg, #e6388e 0%, #fb378e 100%);
    background-image: -ms-linear-gradient( 122deg, #e6388e 0%, #fb378e 100%);
    background-image: linear-gradient( 122deg, #e6388e 0%, #fb378e 100%);
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.09);
    color: #FFF;
}

.ui-steps li {
    padding: 15px 0;
}

.ui-steps li:not(:last-child) {
    border-bottom: 1px solid #f8e3f0;
}

.perspective-phone {
    position: relative;
    z-index: -1;
}

@media (min-width:992px) {
    .perspective-phone {
        margin-top: -150px;
    }
}


/*  TABS
----------------------*/

.tab-content {
    border-bottom-right-radius: 3px;
    border-bottom-left-radius: 3px;
    background-color: #FFF;
    box-shadow: 0px 5px 7px 0px rgba(0, 0, 0, 0.04);
    padding: 3rem;
}

@media (max-width:992px) {
    .tab-content {
        padding: 1.5rem;
    }
}

.tab-content p {
    line-height: 1.8;
}

.tab-content h2 {
    margin-bottom: 0.5rem;
}

.nav-tabs {
    border-bottom: 0;
}

.nav-tabs .nav-item .nav-link,
.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
    padding: 1rem 1rem;
    border-color: #faf6fb #faf6fb #FFF;
    font-size: 19px;
    color: #b5a4c8;
    background: #f5eff7;
}

.nav-tabs .nav-link.active {
    background: #FFF;
    border-top-width: 3px;
    border-color: #ce75b4 #faf6fb #FFF;
    color: #633991;
}


/*  TESTIMONIALS
----------------------*/

.owl-carousel .owl-item img.client-img {
    width: 110px;
    margin: 30px auto;
    border-radius: 50%;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}

.testimonials-single {
    text-align: center;
    max-width: 80%;
    margin: 0 auto;
}

.blockquote {
    color: #7a767a;
    font-weight: 300;
}

.owl-next.disabled,
.owl-prev.disabled {
    opacity: 0.5;
}

.owl-prev,
.owl-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
}

.owl-prev {
    left: 0;
}

.owl-next {
    right: 0;
}

.owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 60px;
}

.owl-theme .owl-dots .owl-dot span {
    background: #e7d9eb;
    width: 35px;
    height: 8px;
    border-radius: 10px;
    transition: all 0.3s ease-in;
}

.owl-theme .owl-dots .owl-dot:hover span {
    background: #ff487e;
}

.owl-theme .owl-dots .owl-dot.active span {
    background: #ff487e;
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
}


/*  IMAGE GALLERY
----------------------*/

.img-gallery .owl-item {
    box-shadow: 0px 9px 32px 0px rgba(0, 0, 0, 0.07);
    transform: scale(0.8);
    transition: all 0.3s ease-in;
}

.img-gallery .owl-item.center {
    transform: scale(1);
}


/*  PRICING
----------------------*/

@media (max-width:992px) {
    .card-deck {
        -ms-flex-direction: column;
        flex-direction: column;
    }
    .card-deck .card {
        margin-bottom: 15px;
    }
}

.card.pricing {
    border: 1px solid #f1eef1;
}

.card.pricing.popular {
    border-top-width: 3px;
    border-color: #ce75b4 #faf6fb #FFF;
    box-shadow: 0px 12px 59px 0px rgba(36, 7, 31, 0.11);
    color: #633991;
}

.card.pricing .card-head {
    text-align: center;
    padding: 40px 0 20px;
}

.card.pricing .card-head .price {
    display: block;
    font-size: 45px;
    font-weight: 300;
    color: #633991;
}

.card.pricing .card-head .price sub {
    bottom: 0;
    font-size: 55%;
}

.card.pricing .list-group-item {
    border: 0;
    text-align: center;
    color: #959094;
    padding: 1.05rem 1.25rem;
}

.card.pricing .list-group-item del {
    color: #d9d3d8;
}

.card.pricing .card-body {
    padding: 1.75rem;
}


/*  CALL TO ACTION
----------------------*/

.call-to-action {
    text-align: center;
    color: #FFF;
    margin: 3rem 0;
}

.call-to-action .box-icon {
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    transform: scale(0.85);
    margin-bottom: 2.5rem;
}

.call-to-action h2 {
    color: #FFF;
}

.call-to-action .tagline {
    font-size: 16px;
    font-weight: 300;
    color: #fff;
    max-width: 650px;
    margin: 0 auto;
}

.btn-light img {
    margin-right: 0.4rem;
    vertical-align: text-bottom;
}


/*  FOOTER
----------------------*/

.social-icons {
    text-align: right;
}

.social-icons a {
    background-color: #FFF;
    box-shadow: 0px 0px 21px 0px rgba(0, 0, 0, 0.05);
    width: 50px;
    height: 50px;
    display: inline-block;
    text-align: center;
    line-height: 50px;
    margin: 0 0.3rem;
    border-radius: 5px;
    color: #9dcafb;
    transition: all 0.3s ease;
}

.social-icons a:hover {
    text-decoration: none;
    color: #bbbbbb;
}

@media (max-width:991px) {
    .social-icons {
        text-align: center;
        margin-top: 2rem;
    }
}

.loginformheader input{
	    float: left;
    display: inline-block;
    max-width: 140px;
	    margin-left: 10px;
}


.jqx-grid {
	border-width: 0px!important;
}
.jqx-grid-column-header, .jqx-grid-columngroup-header, .jqx-grid-cell {
    border-width: 0px 0px 0px 0px!important;
	
}

.jqx-widget-header {
	background: #448aff!important;
    color: #fff;
}



@media (min-width: 1000px) {
	.container {
		max-width: 100%;
	}
	.navbar-nav {
		margin-bottom: -70px;
	}
}

@media (min-width: 1500px) {
	.container {
		
	}
	.navbar-nav {
		margin-bottom: -70px;
		margin-left: 30px;
	}
	
}
@media (max-width: 1500px) {
.submit{
	    margin-top: 10px!important;
	}
	.g-recaptcha {
		float: right!important;
	}
}
@media (min-width: 1930px) {
	.nav-link {
		font-size: 22px!important;
	}
	.img-holder {
		bottom: 0px;
		position: absolute;
	}
	header {
	}
}
    


@media only screen and (max-width: 1100px) and (min-width: 800px)  {
	.navbar-brand img{
		max-width: 140px!important;
	}
	.loginformheader input {
		max-width: 90px;
	}
	.btn {
		padding: 6px 6px;
	}
	.navbar-expand-lg .navbar-nav .nav-link {
		padding-right: 0.5rem;
	}
	
	.img-holder {
		bottom: 0px;
		position: absolute;
		padding-bottom: 40%;
	}
	footer {
		    font-size: 12px;	
	}
	header .container {
		/*padding-top: 13vh;
		max-width: 70%;*/
	}
}



.contact-section{
  padding-top: 40px;
}
.contact-section .col-md-6{
  width: 50%;
}
form > div {
	float: left;
}
.form-check {
    position: absolute;
    margin-top: 35px;
    margin-left: 32px;
    font-size: 14px;
}
.form-check_login_incorect {
	position: absolute;
    margin-top: -25px;
    margin-left: 8px;
    color: red;
}

.form-check-label {
    padding-left: 0.25rem;
	font-size: 14px;
    line-height: 10px;
    font-weight: normal;
}
.navbar-nav .form-check {
    margin-top: 4px;
}


.img-holder {
		bottom: 0px;
		position: absolute;
		    width: 100%;
			left: 0px;
	}

	
	
.form-line{
  border-right: 1px solid #ced4da52;
}

.form-group{
      margin-bottom: 2px;
  margin-top: 0px;
}

form label{
 font-size: 13px;
    line-height: 10px;
    font-weight: normal;
    margin-bottom: 2px;
}
textarea.form-control {
    height: 254px;
   /* margin-top: px;*/
}
.form-control {
    font-size: 12px;
    line-height: 14px;
}
.contact .section-title {
	margin-bottom: 10px;
}
.submit{
     font-size: 14px;
    float: right;
    width: 150px;
    background-color: #d8d8d833;
    color: #633991;
    border: 1px solid #ced4da;
}
#form-messages {
	text-align: center;
}
#form-messages.success {
	color: green;
}
#form-messages.error {
	color: red;
}


.logedin {
	margin-bottom: -31px;
}

.chart, .services, .aboutus, #dropdown, #countriesdropdown {
	display: block;
    position: relative;
}
.menu-is-open {
	height: 100%;
}
.proceed_button {
	
	background: #E91E63;
	color: #fff;
    border: 1px solid;
    /* border-radius: 10px; */
    border-radius: .25rem;
    padding: 0.375rem 1.35rem;
        font-size: 12px!important;
    font-weight: 400;
    text-transform: uppercase;
	margin-left: 10px;
}
.proceed_button:hover {
	background: #fff;
	color: #E91E63;
}
.features {
	text-align: left;
}
.nav-link {
	cursor: pointer;
}
.nav-link:hover {
	opacity: 0.7
}
.menu-is-open {
	height: auto;
}

.loginformheader .form-check {
	margin-left: 0px;
	
}
.loginformheader .form-check label {
	    position: relative;
    top: -5px;
    margin-left: 10px;
}
.loginformheader .form-control {
    font-size: 14px;
    line-height: 14px;
    padding: 7px 10px;
}

#logedin .nav-item {
	margin-top: 18px;
	float: left;
}


@media (min-width: 1024px) {
	
.navbar, .col-md-12, .navbar-brand, .container, header {
	padding: 0px;
}
.row {
	margin: 0px;
}

#menu_desktop {
	height: 150px;
	padding-left: 4vw;
    padding-top: 2vw;
    padding-right: 4vw;
	z-index: 99;
}

#desktop {
	    height: calc(100vh - 210px);
    display: block;
}
body {
	display: grid;
	height: 100vh;
	font-weight: 300;
}
.small, small {
    font-size: 0.7vw;
	position: relative;
    float: left;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.img-fluid {
    position: absolute;
    left: 0px;
    bottom: 60px;
}
.login-desktop {
	margin-top: -15px;
}
#desktop header .container {
	margin: 0px;
    padding: 0px;
	}

#desktop .mt-5, .my-5 {
	margin: 0px!important;
    padding: 0px!important;
}
#desktop .content_section, .yangaroomusicireland.content_section {
	margin-left: 17vw;
    margin-right: 17vw;
    margin-top: 10vh;
	height: auto;
}
#logedin .nav-item {
    margin-top: 0px;
}
.navbar-nav {
    margin-bottom: -72px;
}
.img-holder {
padding-top: 40px;
}

h1 {
	font-size: 2vw
}
.tagline, .content_section {
	font-size: 1vw
}
textarea.form-control {
    height: 130px;
}
.form-group {
    margin-bottom: 8px;
}
.aboutus, .aboutus h1 {
	text-align: left; 
}

.chart_dropdown {
	float: right;
	padding: 0px;
    margin-bottom: 10px;
}
.box-for-grid {
	    width: 100%;
	
	
	}
.box-for-grid-active {
	overflow-y: scroll;
}
.chart .section-title {
	text-align: left;
    float: left;
    margin-bottom: 10px;
}

.chart .section-title h1 {
    font-size: 1.5vw;
}
.desktop-height {
	height: auto!important
}

}


#dropdown, #countriesdropdown {
    border-color: #adadad;
    background: transparent;
}
#horizontalScrollBarinnerListBoxdropdown, #bottomRightinnerListBoxdropdown {
	display: none;
}
#innerListBoxdropdown {
	height: 185px!important;
	border-color: #adadad;
}

.jqx-scrollbar-thumb-state-normal {
	border-radius: 0px!important;
	background: #e5e5e5!important;
}

.jqx-scrollbar-state-normal {
    background: #f3f3f3!important;
}
.jqx-widget-header {
    background: #fff!important;
    color: #adadad;
    border-bottom: 2px solid #adadad!important;
}
.jqx-grid-header {
    height: 40px !important;
}
#columntablegrid > div > div > div:nth-child(1) {
	font-size: 14px!important;
    bottom: 0px;
    position: absolute;
    margin: 0px!important;
}
.jqx-grid-cell-alt {
    background: #fcfcfc!important;
}
.jqx-fill-state-hover {
    background: #f7f7f7!important;
}

#contenttablegrid > div {
	border-bottom: 1px solid #e7e7e7;
}

.jqx-widget-content {
    font-family: 'Rubik', sans-serif!important;
    font-style: normal!important;
    font-size: 14px!important;
    color: #313131!important;
	
}

#charttitle {
	display: inline-block;
}

.page-content {
	width: 100%;
}
.content_mobile_section {
	height: auto!important;
    overflow: hidden;
}
.login-form-button {
	float: right;
    margin-top: 20px;
    cursor: pointer;
}


.login-form-button span {
	font-size: 24px;
    display: block;
    padding: 3px 0px;
}
#contact_page .contact {
	z-index: 99999;
position: relative;
}

.navbar-brand img{
    max-height: 90px;
}
.isapp .container {
    /*border-bottom: 1px solid #eeeeee;*/
}

#station_list_button {
	font-weight: 500;
}

#contenttablecountries_list_results > div {
	cursor: pointer;
}
footer small a {
	pointer-events: none;
    cursor: default;
}
/*.contact .container {
	background: #fff;
    border-radius: 10px;
    padding-bottom: 10px;
     background: linear-gradient(white, 95%, #ffffff00); 
}
*/
.app_store {
	width: 100%;
	margin-top: 50px;
	position: relative;
    display: block;
}
.app_store a img {
	width: 49%
}
.box-for-grid .single_grid {
	width: 100%;
    float: left;
    display: inline-block;
    z-index: 9;
    position: relative;
}
.single_grid .title span {
	display: block;
    font-size: 14px;
}
.single_grid .title a {
	color: #007bff;
}
.single_grid .title .main_title {
	width: 80%;
	text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.yangaroomusicireland.content_section {
	margin-top: -200px;
	background: #fff;
    z-index: 999;
}
.yangaroomusicireland .img-fluid {
    bottom: 30px;
}
#yangaroo_page .my-1.text-center.footer-airplay {
	position: fixed;
    bottom: 0px;
    width: 100%;
}

.yangaroomusicireland .container {
	    z-index: 9;
    position: relative;
}
.tabs_menu .single_tab {
	cursor: pointer;
    float: left;
    border: 1px solid #adadad;
    border-radius: 2px;
    margin-right: 10px;
    width: 30px;
    text-align: center;
}
.tabs_menu .single_tab.active {
	background: #337ab7;
	color: #fff;
}
.tabs_menu .single_tab:hover {
	opacity: 0.7;
}
.tabs_menu {
	display: block;
    float: right;
    margin-bottom: -30px;
	    z-index: 9999;
    position: relative;
}
.research .section-title {
	float: none;
}
.research img {
	max-width: 100%;
}
span.red {
	color: red;
	font-weight: bolder
}
span.green {
	color: green;
	font-weight: bolder
}
.row.image-grid > div {
	margin-bottom: 5px;
}









































































@media (max-width: 1024px) {
	body {
	}
	.menu-is-open {
		height: 100%;
	}
	.loginformheader input {
		float: left;
		display: inline-block;
		max-width: 100%;
		margin-left: 0px;
		margin-bottom: 10px;
	}
/*	.login {
		position: fixed;
		bottom: 30px;
		width: 90%;
		left: 5%;
		z-index: 99999999999;
	} */
	.logedin {
		bottom: 70px;
	}
	
	.login_focused {
		position: relative!important;
		bottom: unset!important;
	}
	.only-login {
		position: absolute;
		bottom: auto;
		top: 30px;
	}
	.navbar-collapse .navbar-nav {
		margin-top: 30px;
	}
	
	
	.navbar-nav .form-check {
		margin-top: -25px;
	}
	.form-check-label {
		padding-left: 0.25rem!important;
	}
	.form-check {
		margin-left: 22px!important;
	}
	.submit{
	    /* font-size: 14px;
		float: none;
		margin-top: 10px;
		left: 50%;
		position: relative;
		margin-left: -75px; */
	}
	.aboutcontent {
		    font-size: 12px;
    font-weight: 300;
	}
	
	.proceed_button {
		padding: 7px 10px!important;
		margin-left: 10px;
		    margin-top: 2.1em;
	}
	
	.menu-container {
		height: 100%;
		background: #fff;
		position: fixed;
		width: 100%;
		left: 0;
		    top: 80px;
		padding-top: 14px;
	}
	.nav-button-custom {
		float: right;
		margin-top: 20px;
		cursor: pointer;
	}
	.menu-float-right {
		float: right!important;
	}
	
	.loginformheader .form-control {
		font-size: 16px;
	}
	
	/*.aboutus .container {
		height: calc(100vh - 120px);
	}
	
	.chart{
		overflow: auto;
		height: 100vh;
	}*/
	
	.section-title h1 {
		font-size: 20px;
		float: left;
	}
	
	#aboutus, #login_page {
		min-height: 100vh;
	}
	
	.menu-bar li {
		display: inline-block;
	}
	.menu-bar {
		text-align: center;
		margin-top: 10px;
		margin-bottom: 5px;
		border-bottom: 1px solid #f2f2f2;
		padding-bottom: 5px;
	}
	
	.menu-bar .nav-link {
		display: block;
		padding: 2px 5px;
		font-size: 4vw;
	}
	.content_mobile_section {
		margin-top: 0px;
    padding: 0px;
	}
	#rm_menu_sign_in {
		float: right;
		top: 30px;
		font-size: 16px;
		text-transform: lowercase;
		position: relative;
	}
	#page_container_login {
		z-index: 9999;
		position: absolute;
		background: #fff;
	}
	
	.page-content .container {
		padding-top: 20px;
	}
	
	
	#chart .col-md-12, #contact .col-md-6, .pt-4, .py-4 {
		padding: 0px!important;
	}
	textarea.form-control {
		height: 10vh!important;
	}
	.g-recaptcha {
		float: left!important;
		transform:scale(0.77);-webkit-transform:scale(0.77);transform-origin:0 0;-webkit-transform-origin:0 0;
		width: 50%;
		overflow: hidden;
		border-right: 1px solid #ced4da;
		border-radius: 5px;
	}

	.footer-airplay {
		display: none;
	}
	#logedin ul {
		list-style: none;
		float: left;
		padding: 0;
		margin: 0px;
	}
	#logedin .nav-item {
		margin: 0px;
	}
	#logedin {
		margin-top: -30px;
	}
	
	.yangaroomusicireland.content_section {
		margin-top: 20px;
	}
	.yangaroomusicireland .single_grid .title .main_title {
		width: 50%;
	}
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
	
}

@media all and (max-width: 800px) and (min-width: 620px) {
	.navbar-nav .form-check {
		margin-top: -28px;
	}
}

.hidden {
	display: none!important;
}

.text-lg-left:nth-child(2) p {
	float: left;
}
.g-recaptcha.error > div{
	border: 2px solid red
}
#ajax-contact {
	display: block;
    /*min-height: 400px; */
}

#logout_button {
	cursor: pointer;
}
#logout_button:hover {
	color: #fff;
}

.small_small_font_size {
	font-size: 8px!important;
}



@supports (-ms-ime-align:auto) {
    footer small {
        position: initial;
		left: auto;
		float: none;
		transform: none;
    }
	.img-holder {
	}
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	footer small {
        position: initial;
		left: auto;
		float: none;
		transform: none;
    }
	.img-holder {
	}
}

@media (min-width: 1921px) {
	.yangaroomusicireland.content_section {
		margin-top: -250px;
	}
}

@media (min-width: 2400px) {
	.yangaroomusicireland.content_section {
		margin-top: -320px;
	}
}
@media (min-width: 2561px) {
	.yangaroomusicireland.content_section {
		margin-top: -400px;
	}
}
