/*```````````````````````````````````````````````````````
        Extract from normalize.css by Nicolas Gallagher
        and Jonathan Neal git.io/normalize
                (thanks to w3css)
                ````````````````````````````````````````````````````````*/
                html{-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}
                article,aside,details,figcaption,figure,footer,header,hgroup,main,menu,nav,section,summary{display:block}
                audio,canvas,video{display:inline-block;vertical-align:baseline}
                audio:not([controls]){display:none;height:0}
                [hidden],template{display:none}
                a{background-color:transparent}
                a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}
                b,strong,optgroup{font-weight:bold}dfn{font-style:italic}
                mark{background:#ff0;color:#000}small{font-size:80%}
                sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}
                sup{top:-0.5em}sub{bottom:-0.25em}
                img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}
                hr{-moz-box-sizing:content-box;box-sizing:content-box}
                code,kbd,pre,samp{font-family:monospace,monospace;font-size:1em}
                button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}
                button{overflow:visible}button,select{text-transform:none}
                button,html input[type=button],input[type=reset],input[type=submit]{-webkit-appearance:button;cursor:pointer}
                button[disabled],html input[disabled]{cursor:default}
                button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}
                input[type=checkbox],input[type=radio]{padding:0}
                input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{height:auto}
                input[type=search]{box-sizing:content-box;-webkit-appearance:textfield;-moz-box-sizing:content-box;-webkit-box-sizing:content-box}
                input[type=search]::-webkit-search-cancel-button,input[type=search]::-webkit-search-decoration{-webkit-appearance:none}
                fieldset{border:1px solid #c0c0c0;margin:0 2px;padding:.35em .625em .75em}
                legend{border:0;padding:0}pre,textarea{overflow:auto}

/*```````````````````````````````````````````````
    Standard box-model
    using border-box property
    ```````````````````````````````````````````````*/
    * {
     -moz-box-sizing: border-box;
     -webkit-box-sizing: border-box;
     box-sizing: border-box;
 }
/*```````````````````````````````````````````````
    Wrapper that will be added
    around all the rows
    ```````````````````````````````````````````````*/
    .wrapper {
        padding-left: 15px;
        padding-right: 15px;
        margin: 0 auto;
        max-width: 1260px;
    }
/*```````````````````````````````````````````````
    Row that will contain desired
    columns and clear float effects
    ```````````````````````````````````````````````*/
    .row:after {
        content: " ";
        display: block;
        clear: both;
    }
/*```````````````````````````````````````````````
    All columns are floated left with
    padding left and right working as gutter
    ```````````````````````````````````````````````*/
    .col {
        float: left;
        padding-left: 15px;
        padding-right: 15px;
        min-height: 1px;
    }
/*```````````````````````````````````````````````
    Our mobile first column
    dimensions set as percentage
    values for small devices
    ```````````````````````````````````````````````*/
    .m1 {
        width: 8.333333333%;
    }
    .m2 {
        width: 16.66666667%;
    }
    .m3 {
        width: 25%;
    }
    .m4 {
        width: 33.33333333%;
    }
    .m5 {
        width: 41.66666667%;
    }
    .m6 {
        width: 50%;
    }
    .m7 {
        width: 58.33333333%;
    }
    .m8 {
        width: 66.66666667%;
    }
    .m9 {
        width: 75%;
    }
    .m10 {
     width: 83.33333333%;
 }
 .m11 {
     width: 91.66666667%;
 }
 .m12 {
     width: 100%;
 }
/*```````````````````````````````````````````````
    Our column dimensions set as
    percentage values for tablets
    ```````````````````````````````````````````````*/
    @media screen and (min-width: 768px) {
        .t1 {
         width: 8.333333333%;
     }
     .t2 {
         width: 16.66666667%;
     }
     .t3 {
         width: 25%;
     }
     .t4 {
         width: 33.33333333%;
     }
     .t5 {
         width: 41.66666667%;
     }
     .t6 {
         width: 50%;
     }
     .t7 {
         width: 58.33333333%;
     }
     .t8 {
         width: 66.66666667%;
     }
     .t9 {
         width: 75%;
     }
     .t10 {
         width: 83.33333333%;
     }
     .t11 {
         width: 91.66666667%;
     }
     .t12 {
         width: 100%;
     }
 }
/*```````````````````````````````````````````````
    Our column dimensions set as
    percentage values for medium sized
    devices like laptops
    ```````````````````````````````````````````````*/
    @media screen and (min-width: 992px) {
        .l1 {
         width: 8.333333333%;
     }
     .l2 {
         width: 16.66666667%;
     }
     .l3 {
         width: 25%;
     }
     .l4 {
         width: 33.33333333%;
     }
     .l5 {
         width: 41.66666667%;
     }
     .l6 {
         width: 50%;
     }
     .l7 {
         width: 58.33333333%;
     }
     .l8 {
         width: 66.66666667%;
     }
     .l9 {
         width: 75%;
     }
     .l10 {
         width: 83.33333333%;
     }
     .l11 {
         width: 91.66666667%;
     }
     .l12 {
         width: 100%;
     }
 }
/*```````````````````````````````````````````````
    Our column dimensions set as
    percentage values for large screen
    devices like desktops
    ```````````````````````````````````````````````*/
    @media screen and (min-width: 1200px) {
        .d1 {
         width: 8.333333333%;
     }
     .d2 {
         width: 16.66666667%;
     }
     .d3 {
         width: 25%;
     }
     .d4 {
         width: 33.33333333%;
     }
     .d5 {
         width: 41.66666667%;
     }
     .d6 {
         width: 50%;
     }
     .d7 {
         width: 58.33333333%;
     }
     .d8 {
         width: 66.66666667%;
     }
     .d9 {
         width: 75%;
     }
     .d10 {
         width: 83.33333333%;
     }
     .d11 {
         width: 91.66666667%;
     }
     .d12 {
         width: 100%;
     }
 }
/*````````````````````````````````
        Base Typography
        `````````````````````````````````*/
        @font-face {
            font-family: 'Open Sans';
            src: url('font-opensans/OpenSans-Light.ttf');
            font-weight: 300;
        }
        @font-face {
            font-family: 'Open Sans';
            src: url('font-opensans/OpenSans-Regular.ttf');
            font-weight: 400;
        }
        @font-face {
            font-family: 'Open Sans';
            src: url('font-opensans/OpenSans-Bold.ttf');
            font-weight: 700;
        }
        html {
            font-size: 62.5%;
        }
        body {
            font-size: 1.5rem;
            line-height: 1.6;
            font-weight: 400;
            font-family: 'Open Sans', Arial, sans-serif;
            color: #222;
        }
        h1, h2, h3, h4, h5, h6 {
            margin-top: 0;
            margin-bottom: 2rem;
            font-weight: 300;
        }
        h1 {
            font-size: 4rem;
            line-height: 1.2;
            letter-spacing: -.1rem;
        }
        h2 {
            font-size: 3.6rem;
            line-height: 1.25;
            letter-spacing: -.1rem;
        }
        h3 {
            font-size: 3.0rem;
            line-height: 1.3;
            letter-spacing: -.1rem;
        }
        h4 {
            font-size: 2.4rem;
            line-height: 1.35;
            letter-spacing: -.08rem;
        }
        h5 {
            font-size: 1.8rem;
            line-height: 1.5;
            letter-spacing: -.05rem;
        }
        h6 {
            font-size: 1.5rem;
            line-height: 1.6;
            letter-spacing: -.0rem;
        }
        p {
            margin-top: 0;
        }
        a{
            text-decoration: none;
        }
/*``````````````````````````````
 *      Base Button Styles
 *      (use it for inputs, anchors, buttons)
 *`````````````````````````````*/
 .btn-circle {
    border: 0;
    outline: 0;
    height: 40px;
    width: 40px;
    border-radius: 50%;
    background-color: #ccc;
}
.btn {
    text-transform: uppercase;
    font-size: 1.3rem;
    display: inline-block;
    vertical-align: baseline;
    text-align: center;
    cursor: pointer;
    color: #2196F3;
    padding: 0 1.5rem;
    border: none;
    border-radius: 2px;
    height: 3rem;
    line-height: 3rem;
    letter-spacing: 0.1rem;
    background-color: transparent;
}
.btn-medium {
    height: 3.8rem;
    line-height: 3.8rem;
    padding: 0 2.8rem;
}
.btn-large {
    height: 4.6rem;
    line-height: 4.6rem;
    padding: 0 3.2rem;
}

.btn-blue {
    background-color: #09f;
    color: #fff;
}
.btn-red {
    background-color: #d64848;
    color: #fff;
}
.btn-green {
    background-color: #008000;
    color: #fff;
}
.btn:hover, .btn:active, .btn:focus {
    outline: 0;
    text-decoration: none;
}
.btn:hover {
    background-color: #f2f2f2;
}
.btn-blue:hover {
    background-color: #20a2f9
}
.btn-red:hover {
    background-color: #cd5c5c;
}
.btn-green:hover {
    background-color: #039403;
}
/*``````````````````````````````````
 *      Base Input Styles
 *`````````````````````````````````*/
 input[type="text"],
 input[type="email"],
 input[type="search"],
 input[type="password"],
 input[type="number"],
 input[type="tel"],
 input[type="url"],
 input[type="date"],
 input[type="time"],
 select,
 textarea {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    display: inline-block;
    height: 3rem;
    line-height: 3rem;
    border: 1px solid #bbb;
    border-radius: 2px;
    box-shadow: none;
    vertical-align: baseline;
    background-color: #fff;
    color: #646464;
    font-size: 1.3rem;
    padding: 0 1rem;
    box-sizing: border-box;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="search"]:focus,
input[type="password"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="date"]:focus,
input[type="time"]:focus,
select:focus,
textarea:focus {
    background-color: #f2f2f2;
    border: 1px solid #09f;
    outline: 0;
}
label {
    display: inline-block;
    font-weight: 700;
    font-size: 1.4rem;
}
label:hover {
    cursor: pointer;
}
input[type="radio"],
input[type="checkbox"] {
    vertical-align: middle;
    display: inline-block;
    height: 1.5rem;
    width: 1.5rem;
}
input[type="radio"]:hover,
input[type="checkbox"]:hover {
    cursor: pointer;
}
/*-----few hacks for proper alignment
and display of form element------*/
form {
    padding-top: 2rem;
}
select {
    vertical-align: bottom;
}
textarea {
    min-height: 6.5rem;
    line-height: 1.6rem;
    padding-top: 0.6rem;
    padding-bottom: 0.6rem;
}
::-webkit-input-placeholder { /* Chrome/Opera/Safari */
  color: #646464;
}
::-moz-placeholder { /* Firefox 19+ */
  color: #646464;
}
:-ms-input-placeholder { /* IE 10+ */
  color: #646464;
}
:-moz-placeholder { /* Firefox 18- */
  color: #646464;
}
/*`````````````````````````````
 *  Base table styling
 *```````````````````````````*/
 table {
    border-collapse: collapse;
    overflow-x: auto;
}
th {
    font-weight: 700;
    font-size: 1.4rem;
}
th,
td {
    text-align: left;
    border-bottom: 1px solid #e1e1e1;
    padding: 1.2rem 1.5rem;
}
/*`````````````````````````
 *  Base lists style
 *````````````````````````*/
 ul {
    list-style: disc inside;
}
ol {
    list-style: decimal inside;
}
ol,
ul {
    padding-left: 0;
    margin-top: 0;
}
ul ul,
ul ol,
ol ol,
ol ul {
    margin: 1.5rem 0 1.5rem 3rem;
    font-size: 90%;
}
li {
    margin-bottom: 1rem;
}
/*````````````````````````````````
 *  Few base spacing for proper
 *  visual aligment
 *```````````````````````````````*/
 ul,
 ol,
 pre,
 blockquote,
 dl,
 figure,
 form,
 table {
    margin-bottom: 2.5rem;
}
/*```````````````````````````
 *  Responsive image styles
 *``````````````````````````*/
 img {
     max-width: 100%;
     height: auto;
 }
/*```````````````````````````
 *  Code tags styles
 *``````````````````````````*/
 code {
    padding: .2rem .5rem;
    margin: 0 .2rem;
    font-size: 90%;
    white-space: nowrap;
    background: #f1f1f1;
    border: 1px solid #e1e1e1;
    border-radius: 4px;
}
pre > code {
    display: block;
    padding: 1rem 1.5rem;
    white-space: pre;
}
/*`````````````````````````````
 *      Basic form utilities
 *
 *      .label-block: makes a label display block
 *      .form-field: applied on a form field
 *````````````````````````````*/
 .label-block {
    display: block;
}
.form-field {
    display: block;
    padding-bottom: 2rem;
}
.active-field {
    background-color: #f2f2f2 !important;
    border: 1px solid #09f !important;
    outline: 0 !important;
}
.invalid-field {
    border: 1px solid #cd5c5c !important;       
}
/*`````````````````````````````
    Base table utilities
    
    .table-layout-fixed: creates table layout fixed
    .table-stripped: strips odd rows of a table body
    *`````````````````````````````*/
    .table-layout-fixed {
        table-layout: fixed;
    }
    .table-stripped tbody tr:nth-child(odd) {
        background-color: #f1f1f1;
    }
/*`````````````````````````````
       Modal & Loader Utilities
       ````````````````````````````*/
       #loading-indicator, #modal-div {
        padding: 0.5rem 1rem;
        background: #424242;
        font-weight: 400;
        position: fixed;
        bottom: 0;
        left: 0;
        color: #eee;
    }
    .loader {
        display: inline-block;
        border: 2px solid #f3f3f3;
        border-top: 2px solid #424242;
        border-radius: 50%;
        width: 30px;
        height: 30px;
        vertical-align: bottom;
        margin-right: 1.4rem;
        animation: spin 1s linear infinite;
    }
    #modal-div {
        right: 0;    
        top: 0;
        background: rgba(0,0,0);
        background-color: rgba(0,0,0,0.9);
        padding-top: 50px;
        overflow: auto;
        text-align: center;
    }
    .modal-content {
        display: inline-block;
        min-width: 50%;
        margin: 5% auto;
        background: #fff;
        color: #646464;
        border-radius: 2px;
        border: 4px solid;
        padding: 1rem 2rem;
        -webkit-animation-name: animatetop;
        -webkit-animation-duration: 0.4s;
        animation-name: animatetop;
        animation-duration: 0.4s
    }
    @-webkit-keyframes animatetop {
        from {top: -300px; opacity: 0} 
        to {top: 0; opacity: 1}
    }

    @keyframes animatetop {
        from {top: -300px; opacity: 0}
        to {top: 0; opacity: 1}
    }
    @keyframes spin {
        0% { transform: rotate(0deg); }
        100% { transform: rotate(360deg); }
    }
    
    /*-- bounce animation--*/
.animated {
    animation: bounce 3s infinite;
 -webkit-animation: bounce 3s infinite;
 -moz-animation: bounce 3s infinite;
 -o-animation: bounce 3s infinite;
    /*animation: 3s infinite;
    -webkit-animation: 3s infinite;
    -webkit-animation-duration: 3s;
    animation-duration: 3s;*/
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
@-webkit-keyframes bounce {
    0%, 20%, 50%, 80%, 100% {-webkit-transform: translateY(0);}
    40% {-webkit-transform: translateY(-10px);}
    60% {-webkit-transform: translateY(-5px);}
} 
@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {transform: translateY(0);}
    40% {transform: translateY(-10px);}
    60% {transform: translateY(-5px);}
} 
/*
 * Adding the animation to our element
*/
.bounce {
    -webkit-animation-name: bounce;
    animation-name: bounce;
}

/*`````````````````````````````
     Color utilities
     *`````````````````````````````*/
     .blue {
        color: #09f;
    }
    .green {
     color: green;
 }
 .red {
     color: #cd5c5c;
 }
 .white {
     color: #fff;
 }
 .black {
     color: #222;
 }
/*`````````````````````````````
 *      Extra utilities
 *````````````````````````````*/
 .float-right {
    float: right;
}
.full-width {
    width: 100%;
}
.txt-center {
 text-align: center;
}
.txt-right {
 text-align: right;
}
.txt-left {
 text-align: left;
}
.show {
 display: inherit;
}
.hide {
 display: none;
}
.round-label {
 display: inline-block;
 line-height: 40px;
 text-align: center;
}
.red-label {
    background: #cd5c5c;
    color: #fff;
    padding: 0.2rem 1rem;
    border-radius: 3px;
    box-shadow: 0 0 10px #ccc;
}
.orange-label {
    background: orange;
    color: #fff;
    padding: 0.2rem 1rem;
    border-radius: 3px;
    box-shadow: 0 0 10px #ccc;
}