﻿/*@import url("https://fonts.googleapis.com/css?family=Lato:400,400i,700");*/


* {
    box-sizing: border-box;
}

.text-blue {
    color: #00f;
}

.text-red {
    color: red;
}

.text-green {
    color: #336699;
}

.bg-red {
    background-color: red !important;
    color: white;
}

.bg-yellow {
    background-color: yellow !important;
}

.bg-blue {
    background-color: #249233 !important;
    color: white;
}

.bg-green {
    background-color: #249233 !important;
    color: white;
}

html {
    display: block;
}

body {
    font-family: Lato, sans-serif;
    line-height: 1.4;
    font-size: 90%;
    padding: 0;
    margin: 0;
    /* 
        background: #f1f1f1;
       padding: 5px;
    margin: 5px;
   */
}

.body {
    background: #fff;
}

.body {
    padding: 5px;
    margin: 5px;
}

a {
    text-decoration: none;
    padding-bottom: 10px;
}

    a.large {
        font-size: 16pt;
    }

    a.bold {
        font-weight: bold;
    }
a:link {
    color: #00f;
}


a:visited {
    color: #00f;
}

    a:hover {
        color: #336699;
    }


a:active {
    color: #00f;
}

.btn {
    width: 100%;
    margin: auto auto;
}

a:link.btn, a:visited.btn {
    background-color: #335BB2;
    color: white;
    padding: 14px 25px;
    text-align: center;
    text-decoration: none;
    display: inline-block;
}

a:hover.btn, a:active.btn {
    background-color: #00f;
}

/* Header/Blog Title */
.header {
    /*padding: 30px;*/
    padding: 0;
    text-align: center;
    background: white;
}

    .header .alt-header {
        display: none;
    }

    .header h1 {
        font-size: 2em;
    }

img.article {
    width: 100%;
    height: auto;
}

h1.rounded, h2.rounded, h3.rounded, h4.rounded, h5.rounded, h6.rounded {
    font-size: 1em;
    margin: 0 0 7px 0;
    padding: .5em;
    border: 1px solid #313131;
    background: #336699;
    color: #f8f8f8;
    border-bottom-right-radius: 5px;
    border-bottom-left-radius: 5px;
    border-top-right-radius: 5px;
    border-top-left-radius: 5px;
}

/* Style the top navigation bar */
/*.topnav {
    overflow: hidden;
    background-color: #0000FF;
}
*/
    /* Style the topnav links */
  /*  .topnav a {
        float: left;
        display: block;
        color: #f2f2f2;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }*/

        /* Change color on hover */
      /*  .topnav a:hover {
            background-color: #0000cc;
            color: #fff;
        }
        */

      /*  .topnav a.logo {
            float: left;
            display: block;
            color: #f2f2f2;
            text-align: center;
            padding: 6px 5px 2px 5px;
            text-decoration: none;
        }*/

        /* Change color on hover */
     /*   .topnav a:hover.logo {
            background-color: transparent;
            color: #fff;
        }*/
/* Navbar container */
.navbar {
    overflow: hidden;
    background-color: #336699;
    font-family: Arial;
}

    /* Links inside the navbar */
    .navbar a {
        float: left;
        font-size: 16px;
        color: white;
        text-align: center;
        padding: 14px 16px;
        text-decoration: none;
    }

        .navbar a.logo {
            padding: 9px 8px 0 8px;
        }
.navbar a:hover.logo {
    background-color: transparent;
    color: #fff;
}
/* The dropdown container */
.dropdown {
    float: left;
    overflow: hidden;
}

    /* Dropdown button */
    .dropdown .dropbtn {
        font-size: 16px;
        border: none;
        outline: none;
        color: white;
        padding: 16px 16px;
        background-color: inherit;
        font-family: inherit; /* Important for vertical align on mobile phones */
        margin: 0; /* Important for vertical align on mobile phones */
    }

    /* Add a red background color to navbar links on hover */
    .navbar a:hover, .dropdown:hover .dropbtn {
        background-color: #2e5c8a;
    }

/* Dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: #f9f9f9;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
}

    /* Links inside the dropdown */
    .dropdown-content a {
        float: none;
        color: black;
        padding: 12px 16px;
        text-decoration: none;
        display: block;
        text-align: left;
    }

        /* Add a grey background color to dropdown links on hover */
        .dropdown-content a:hover {
            background-color: #ddd;
        }

/* Show the dropdown menu on hover */
.dropdown:hover .dropdown-content {
    display: block;
}


/* Create two unequal columns that floats next to each other */
/* Left column */
.leftcolumn {
    background-color: #fff;
    float: left;
    width: 75%;
    padding: 10px;
}

/* Right column */
.rightcolumn {
    float: left;
    width: 25%;
    background-color: #fff;
    padding-left: 20px;
}

/* Fake image */
.fakeimg {
    background-color: #aaa;
    width: 100%;
    padding: 20px;
}

/* Add a card effect for articles */
.card {
    background-color: white;
    padding: 20px;
    margin-top: 20px;
}

/* Clear floats after the columns */
.row:after {
    content: "";
    display: table;
    clear: both;
}

/* Footer */
.footer {
    padding: 20px;
    text-align: center;
    background: #ddd;
    margin-top: 20px;
}

/* Responsive layout - when the screen is less than 800px wide, make the two columns stack on top of each other instead of next to each other */
@media screen and (max-width: 800px) {
    .leftcolumn, .rightcolumn {
        width: 100%;
        padding: 0;
    }
}

/* Responsive layout - when the screen is less than 400px wide, make the navigation links stack on top of each other instead of next to each other */
@media screen and (max-width: 400px) {
    .topnav a {
        float: none;
        width: 100%;
    }
}


.link {
    color: #61dafb;
}

.hidden {
    display: none;
}


/*COLUMN GRID CSS*/

[class*="col-"] {
    float: left;
    padding: 15px;
    width: 100%;
}

@media only screen and (min-width: 600px) {
    .col-s-1 {
        width: 8.33%;
    }

    .col-s-2 {
        width: 16.66%;
    }

    .col-s-3 {
        width: 25%;
    }

    .col-s-4 {
        width: 33.33%;
    }

    .col-s-5 {
        width: 41.66%;
    }

    .col-s-6 {
        width: 50%;
    }

    .col-s-7 {
        width: 58.33%;
    }

    .col-s-8 {
        width: 66.66%;
    }

    .col-s-9 {
        width: 75%;
    }

    .col-s-10 {
        width: 83.33%;
    }

    .col-s-11 {
        width: 91.66%;
    }

    .col-s-12 {
        width: 100%;
    }
}

@media only screen and (min-width: 768px) {
    .col-1 {
        width: 8.33%;
    }

    .col-2 {
        width: 16.66%;
    }

    .col-3 {
        width: 25%;
    }

    .col-4 {
        width: 33.33%;
    }

    .col-5 {
        width: 41.66%;
    }

    .col-6 {
        width: 50%;
    }

    .col-7 {
        width: 58.33%;
    }

    .col-8 {
        width: 66.66%;
    }

    .col-9 {
        width: 75%;
    }

    .col-10 {
        width: 83.33%;
    }

    .col-11 {
        width: 91.66%;
    }

    .col-12 {
        width: 100%;
    }
}



.main ol {
    /*max-width: 350px;*/
    counter-reset: my-awesome-counter;
    list-style: none;
    padding-left: 40px;
}

    .main ol li {
        margin: 0 0 0.5rem 0;
        counter-increment: my-awesome-counter;
        position: relative;
        min-height: 40px;
    }

        .main ol li::before {
            content: counter(my-awesome-counter);
            color: #fff;
            font-size: 1.5rem;
            font-weight: bold;
            position: absolute;
            --size: 32px;
            left: calc(-1 * var(--size) - 10px);
            line-height: var(--size);
            width: var(--size);
            height: var(--size);
            top: 0;
            transform: rotate(-10deg);
            background: #335BB2;
            border-radius: 50%;
            text-align: center;
            box-shadow: 1px 1px 0 #999;
        }

.main ul {
    list-style: none;
    padding-left: 40px;
}

    .main ul li {
        margin: 25px 0;
        padding-left: 45px;
        min-height: 30px;
        background: url(images/x.svg) no-repeat;
        background-size: 40px 40px;
    }

table {
    border-collapse: collapse;
    width: 100%;
}

th, td {
    text-align: left;
    padding: 8px;
}

tr:nth-child(even) {
    background-color: #f2f2f2;
}

tr:nth-child(odd) {
    background-color: #fff;
}

input {
    padding: 12px;
    margin: 8px 0;
    box-sizing: border-box;
}

    input[type=text] {
        width: 100%;
        border: 1px solid #ccc;
        border-radius: 2px;
    }

        input[type=text]:focus {
            width: 100%;
            border: 1px solid #666666;
            border-radius: 2px;
        }

        /* input {
            border: none !important;
        }*/

        input[type=text]:focus {
            border: none !important;
        }

select {
    width: 100%;
    padding: 12px;
    margin: 8px 0;
    border: 1px solid #808080;
    border-radius: 2px;
    background-color: #fff;
}

    select option {
        padding: 12px;
        margin: 8px 0;
    }

textarea {
    width: 100%;
    height: 150px;
    padding: 12px 20px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
    background-color: #f8f8f8;
    resize: none;
}

.pull-right {
    float:right;
}
.pull-left{
    float:left;
}