@charset "utf-8";
/* CSS Document */

@font-face {
    font-family: 'noto_sans_malayalamregular';
    src: url('../fonts/NotoSansMalayalam-Regular.woff2') format('woff2'),
		 url('../fonts/NotoSansMalayalam-Regular.woff') format('woff'),
         url('../fonts/NotoSansMalayalam-Regular.woff2') format('truetype');;
    font-weight: normal;
    font-style: normal;

}

body{
	
	font-size: 16px;
	font-family: 'Lato', sans-serif;
	font-weight: 400;
	background-color: #4c186e;
}
.text_mal{
	display: none;
}
.master_color{
color: #b904ac;
}
.master_title{
	font-weight: 700;
	font-size: 26px
}
.error{
	color: #F00 !important;
}
.latoN{
	font-family: 'Lato', sans-serif;
	font-weight: 400;
}
.latoB{
	font-family: 'Lato', sans-serif;
	font-weight: 700;
}
.notoN{
	font-family: 'noto_sans_malayalamregular';
	font-weight: 400;
}
.notoB{
	font-family: 'noto_sans_malayalamregular';
	font-weight: 700;
}
.btn:focus, .btn:active {
  outline: none !important;
  box-shadow: none !important;
}
.btn_master1{
	background: #b904ac;
	color: #FFF;
	border: none;
	border-radius: 5px;
	padding-left: 15px;
	padding-right: 15px;
	font-weight: 400;
	margin:10px 5px 10px 5px
}
.btn_master1:hover {
	background-color: #FFF !important;
	color: #b904ac;
}
.btn_master2{
	background-color: transparent;
	color: #FFF;
	border: 1px solid #b904ac;
	border-radius: 5px;
	padding-left: 15px;
	padding-right: 15px;
	font-weight: 400;
	margin:10px 5px 10px 5px
}
.btn_master2:hover, .btn_master2:active  {
	background-color: #b904ac;
	color: #FFF;
}

/* Home */
.sing_back{
	background-image:url(../images/BG_homepage.jpg);
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}

.switch {
	display: block;
	vertical-align: top;
	width: 63px;
	height: 25px;
	padding: 1px;
	margin:0;
	background:#FFF;
	cursor: pointer;
  	box-sizing:content-box;
	position: fixed;
	right: 20px;
	top: 20px;
}
.switch-input {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
  box-sizing:content-box;
}
.switch-label {
	position: relative;
	display: block;
	height: inherit;
	font-family: 'Lato', sans-serif;
	font-size: 13px;
	font-weight: 400;
	text-transform: uppercase;
	background: #FFF;
  	box-sizing:content-box;
}
.switch-label:before, .switch-label:after {
	position: absolute;
	top: 50%;
	margin-top: -.5em;
	line-height: 1;
	-webkit-transition: inherit;
	-moz-transition: inherit;
	-o-transition: inherit;
	transition: inherit;
  box-sizing:content-box;
}
.switch-label:before {
	content: attr(data-off);
	right: 11px;
	color: #b904ac;
}
.switch-label:after {
	content: attr(data-on);
	left: 11px;
	color: #FFFFFF;
	opacity: 0;
}
.switch-input:checked ~ .switch-label {
	background: #b904ac;
}
.switch-input:checked ~ .switch-label:before {
	opacity: 0;
}
.switch-input:checked ~ .switch-label:after {
	opacity: 1;
}
.switch-handle {
	position: absolute;
	top: 1px;
	left: 1px;
	width: 18px;
	height: 25px;
	background: #eda658;
}

.switch-input:checked ~ .switch-handle {
	left: 46px;
	
}

/* Transition
============================================================ */
.switch-label, .switch-handle {
	transition: All 0.3s ease;
	-webkit-transition: All 0.3s ease;
	-moz-transition: All 0.3s ease;
	-o-transition: All 0.3s ease;
}


/* main page */
.welcome{
	padding-top: 50px;
	padding-bottom: 50px;
}
.welcome .master_title{
	color:#FFF;
	margin-top: 20px;
	letter-spacing: 2px;
}
.welcome  p{
	color:#FFF;
	padding-bottom: 20px
}

.welcome button,.welcome a{
	width:180px
}
.welcome p a{
	color: #FFF;text-decoration: underline;
	width: auto;
}
.registration_content .modal-content{
	background-color: rgba(0,0,0,0.8);
}
.registration_content .modal-footer{
	border-top:none;
	justify-content: center;
}

.registration_content .nav-pills .nav-link {
    color: #fff;
	padding: 3px 10px 3px 10px;
}
.registration_content .nav-pills .nav-link.active {
    color: #fff;
    background-color: #b904ac;
}
.registration_content .tab-content p, .text-muted{
	color: #FFF !important
}
.registration_content .tab-content a{
	color: #FFF;
	text-decoration: underline;
	font-style: italic;
}

.span_pseudo, .red_check span:before, .red_check span:after {
  content: "";
  display: inline-block;
  background: #fff;
  width: 0;
  height: 0.2rem;
  position: absolute;
  transform-origin: 0% 0%;
}

.red_check {
  position: relative;
  height: 2rem;
  display: flex;
  align-items: center;
margin-top: 30px;
	margin-bottom: 30px;
}
.red_check input {
  display: none;
}
.red_check input:checked ~ span {
  background: #fd2727;
  border-color: #fd2727;
}
.red_check input:checked ~ span:before {
  width: 1rem;
  height: 0.15rem;
  transition: width 0.1s;
  transition-delay: 0.3s;
}
.red_check input:checked ~ span:after {
  width: 0.4rem;
  height: 0.15rem;
  transition: width 0.1s;
  transition-delay: 0.2s;
}
.red_check input:disabled ~ span {
  background: #ececec;
  border-color: #dcdcdc;
}
.red_check input:disabled ~ label {
  color: #dcdcdc;
}
.red_check input:disabled ~ label:hover {
  cursor: default;
}
.red_check label {
  padding-left: 2rem;
  position: relative;
  z-index: 2;
  cursor: pointer;
  margin-bottom:0;
	color: #FFF;
	font-size: 14px;
}
.red_check span {
  display: inline-block;
  width: 1.2rem;
  height: 1.2rem;
  border: 2px solid #fff;
  position: absolute;
  left: 0;
  transition: all 0.2s;
  z-index: 1;
  box-sizing: content-box;
}
.red_check span:before {
  transform: rotate(-55deg);
  top: 1rem;
  left: 0.37rem;
}
.red_check span:after {
  transform: rotate(35deg);
  bottom: 0.35rem;
  left: 0.2rem;
}



/* Register page */
.inner_back{
	background-image:url(../images/innerpagescreen.jpg);
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
}
.reg_back{
	background-color: #4c186e;
	height: 100vh;
	
}
.registration_form label{
	color: #FFF;
	font-size: 15px;
	
}
.registration_form .form-control{
	background-color: transparent !important;
	border:1px solid #b904ac;
	color: #FFF;
	
}
.registration_form p{
	color: #FFF;
	font-size: 15px;
	margin-top: 15px
}
.registration_form p a{
	color: #fff;text-decoration: underline;	
}
.registration_form .form-control:focus, .registration_form .form-control:active {
  outline: none !important;
  box-shadow: none !important;
}
.registration_form select option {
    background-color:#b904ac;
    color: #fff;
}
#otp-form{
	display: none;
}

/*** genre & song page*/
.genre h1{
	color: #FFF;
	font-size: 22px;
	font-weight: 400;
}
.genre p{
	color: #FFF;
	font-size: 15px;
	font-weight: 400;
}
.songlist{
	
}
.songlist p{
	color: #FFF;
	font-size: 15px;
	font-weight: 400;
	border-bottom: 1px solid #b904ac;
	padding: 5px 10px 15px 5px;
}
.songlist .btn_master2{
	font-size: 13px;
}
#uploadForm .msg{
	color:#FFF
}
/* Thank You */
.sing_end{
	/*background-image:url(../images/lastscreen.jpg);*/
	background-size: cover;
	background-position: center center;
	background-attachment: fixed;
	background-color: #4c186e;
}
.sing_end h1{
	color:#FFF;
	font-size: 35px;
}
.sing_end h4,.sing_end p {
	color:#FFF;
	margin-bottom: 30px;
}

/* Contact Page*/
.fixed_contact{
	position: fixed;
    top: 50%;
    right: 0px;
	margin-top: -30px;
}

.single_vote{
	background-color: #4c186e;
	padding-top: 30px;
	margin-bottom: 30px;
	padding-bottom: 30px
}
.votes h1{
	color: #FFF;
	font-size: 18px;
	margin-top: 10px;
}
.votes p{
	padding-bottom: 0px;
}
.votes h3{
	color: #FFF;
	font-size: 22px;
	margin-top: 0px;
	line-height: 15px
}
.votes h3 span{
	font-size: 15px;
	line-height: normal
}

