/*
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 : Jan 08, 2018, 10:00:30 AM
    Author     : Jubin
*/

/* Custom Fonts */
@font-face {
    font-family: 'SinkinSans';
    src: url('../fonts/SinkinSans-400Italic.otf');
    font-weight: 400;
    font-style: italic;
}
@font-face {
    font-family: 'SinkinSans';
    src: url('../fonts/SinkinSans-400Regular.otf');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'SinkinSans';
    src: url('../fonts/SinkinSans-500Medium.otf');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'SinkinSans';
    src: url('../fonts/SinkinSans-500MediumItalic.otf');
    font-weight: 500;
    font-style: italic;
}
@font-face {
    font-family: 'SinkinSans';
    src: url('../fonts/SinkinSans-600SemiBold.otf');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'SinkinSans';
    src: url('../fonts/SinkinSans-700Bold.otf');
    font-weight: 700;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
}
html, body {
    margin: 0;
    height: 100%;
    font-size: 12px;
    background: #fff; 
    font-weight: 400;
    font-family: 'SinkinSans' !important;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0px;
}
a, button, p, li, ul, span, input {
    margin: 0px;
    padding: 0px;
    font-family: 'SinkinSans' !important;
    list-style: none;
    font-weight: 400;
}
a:focus, button:focus {
    outline: none !important;
    box-shadow: none !important;
    text-decoration: none !important;
}
h1, h2 {
    font-family: 'SinkinSans' !important;
    font-size: 30px;
    color:#000;
    font-weight:700;
}
h3, h4 {
    font-size: 24px;
    font-family: 'SinkinSans' !important;
    color: #000;
    font-weight:700;
}
h5, h6 {
    font-size: 20px;
    font-family: 'SinkinSans' !important;
    color: #000;
    font-weight:600;
}
p, span {
    font-size: 12px;
    font-family: 'SinkinSans' !important;
    font-weight: 400;
}
a {
    color: inherit;
    font-family: 'SinkinSans' !important;
    font-weight: 400;
    font-size: 12px;
    text-decoration: none!important;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}
a:hover, a:focus, a:active {
    outline: none !important;
    text-decoration: none !important;
}
button {
    font-family: 'SinkinSans' !important;
    font-weight: 400;
    font-size: 12px;
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -ms-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}  
button:hover, button:focus, button:active {
    outline: none !important;
    text-decoration: none !important;
}
img {
    border:none;
    max-width:100%;
}
footer {
    color: #fff;
}
footer ul li a {
    color: #000;
    font-family: 'SinkinSans' !important;
    font-weight: 400;
}
section {
    float: left;
    width: 100%;
    padding: 40px 0px;
    position: relative;
}
section h3 {
    margin-bottom: 25px;
}
section p {
    line-height: 22px;
    color: #4b4a4a;
    text-align: center;
    font-size: 12px;
}
label {
    font-family: 'SinkinSans' !important;
    font-weight: 400;
    font-size: 12px;
}
.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;
    vertical-align: middle;
}
input[type=checkbox]~.text:before,
input[type=radio]~.text:before{
    position: absolute;
    top: 6px;
    left: 0;
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;  
    font: normal normal normal 14px/1 FontAwesome;
    font-size: 20px;
    text-align: center;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    color: #e2e2e2;  
    vertical-align: bottom;
}

/*With font-awesome*/
input[type=checkbox]~.text:before{
    content: "\f096";
    vertical-align: bottom;
}
input[type=checkbox]:checked~.text:before{
    content: "\f14a";
    color: #007de1;
}

/*With Image*/
input[type=checkbox]~.text.img-bg{
    padding-left: 10px;
    vertical-align: middle;
}
input[type=checkbox]~.text.img-bg:before{
    content: "";
}
input[type=checkbox]~.text.img-bg:before{
    background-position: 0 0;  
}
input[type=checkbox]:checked~.text.img-bg:before{
    background-position: -20px 0;
}

/*1.d Radio Button*/
input[type=radio]~.text:before{  
    content: "\f10c";
}
input[type=radio]:checked~.text:before{
    content: "\f192";
}

/*Disabled*/
input[type=checkbox][disabled]~.text,
input[type=radio][disabled]~.text,
input[type=checkbox][readonly]~.text,
input[type=radio][readonly]~.text,
input[type=checkbox][disabled]~.text:before,
input[type=radio][disabled]~.text:before,
input[type=checkbox][readonly]~.text:before,
input[type=radio][readonly]~.text:before{
    color:#d8e0e6;
    cursor: not-allowed;
}