/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : March 02, 2018, 11:20:20 AM
    Author     : Jubin
*/
/* Custom Font Start */
@import url('https://fonts.googleapis.com/css?family=Gidolinya:300,300i,400,400i,500,500i,700,900');
@font-face {
	font-family: 'SouciSansNF';
	src: url('../fonts/SouciSansNF.eot');
	src: local('☺'), url('../fonts/SouciSansNF.woff') format('woff'), url('../fonts/SouciSansNF.ttf') format('truetype'), 
            url('../fonts/SouciSansNF.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
    font-family: 'Gidolinya';
    src: url('../fonts/Gidolinya-Regular.otf')  format('opentype'),
        url('../fonts/Gidolinya-Regular.ttf')  format('truetype'), url('../fonts/Gidolinya-Regular.svg#Gidolinya-Regular') format('svg');
    font-weight: normal;
    font-style: normal;
}

::-webkit-scrollbar {
    width: 9px;
    height: 9px; 
}
::-webkit-scrollbar-track {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    background: #e7e7e7; 
}
::-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    background: #d1d3d5;
    border: 1px solid #d1d3d5; 
}
:-webkit-scrollbar-thumb {
    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    -ms-border-radius: 0px;
    border-radius: 0px;
    background: #d1d3d5;
    border: 1px solid #d1d3d5; 
}
* {
    margin: 0;
    padding: 0; 
}
body {
    font-family: 'Gidolinya';
    font-size: 15px;
    color: #424242; 
}

html, body {
    margin: 0;
    height: 100%;
}

h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font-family:"Gidolinya";
}

p, li, ul {
    margin: 0px;
    padding: 0px;
    font-family: "Gidolinya";
    font-weight: 400;
    list-style: none; 
}
a {
    cursor: pointer;
    font-family: "Gidolinya";
    color: #000;
    font-size: 14px;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    -ms-border-radius: 0;
    border-radius: 0; }
a:hover, a:focus, a:active {
    text-decoration: none !important;
    box-shadow: none !important;
    outline: none !important;
    transition: all 0.2s ease-in-out; 
}

/* Checkbox or Radio Button */
.checkbox, .radio {
    position: relative;
    display: block; 
}
input[type=checkbox], input[type=radio] {
    display: none; 
}
input[type=checkbox] ~ .text, input[type=radio] ~ .text {
    padding-left: 5px;
    cursor: pointer; 
}
input[type=checkbox] ~ .text:before, input[type=radio] ~ .text:before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    display: inline-block;
    width: 12px;
    height: 12px;
    font: normal normal normal 1.000em/1 FontAwesome;
    font-size: 1.000em;
    text-align: center;
    color: #000;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    vertical-align: bottom;
    line-height: 23px; 
}
input[type=checkbox] ~ .text:before {
    content: "\f096";
    vertical-align: bottom; 
}
input[type=checkbox]:checked ~ .text:before {
    content: "\f14a";
    color: #f16687; 
}
