/*
Colors:

#00A99D - Logo color
#464F51 - Greenish
D0EFED
A2DFDB
#45C0B7
006C64
002F2B
#464F51 - Greyish

font-family: 'Roboto', sans-serif;
font-family: 'Open Sans', sans-serif;
*/


*
{ 
    margin: 0; 
}

body
{
    background-color: #F5F5F5;
    width: 100%;
    height: 100%;
}

h2
{
    font-size: 2em;
    font-family: 'Roboto', sans-serif;
}

p
{
    font-size: 1em;
}

main
{
    display: flex;
    justify-content: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
}

.main-padding
{
    padding: 1em;
}

.main-pricing
{
    flex-direction: column;
}


.flex 
{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

section
{
    background-color: #FFFFFF;
    -webkit-box-shadow: .5em .5em 1em 0 rgba(0,0,0,0.1);
    -moz-box-shadow: .5em .5em 1em 0 rgba(0,0,0,0.1);
    box-shadow: .5em .5em 1em 0 rgba(0,0,0,0.1);
}

.section-header
{
    display: flex;
    flex-direction: row;
    justify-content: center;
    margin-bottom: 1em;
    border: .1em solid #000000;
    border-radius: 1em 1em 1em 1em;
    -webkit-border-radius: 1em 1em 1em 1em;
    -moz-border-radius: 1em 1em 1em 1em;
}

.section-left
{
    background-color: #FFFFFF;
    border: .1em solid #000000;
    border-radius: 1em 0 0 1em;
    -webkit-border-radius: 1em 0 0 1em;
    -moz-border-radius: 1em 0 0 1em;
    margin-right: 1em;
    padding: 1em;
}

.section-right
{
    background-color: #FFFFFF;
    border: .1em solid #000000;
    border-radius: 0 1em 1em 0;
    -webkit-border-radius: 0 1em 1em 0;
    -moz-border-radius: 0 1em 1em 0;
    padding: 1em;
}

/* Navigation */

.navigationbar
{
    background-color: #000000;
    width: 100%;
    border-bottom: .1em solid #00A99D;
    -webkit-box-shadow: .5em .5em 1em 0 rgba(0,0,0,0.18);
    -moz-box-shadow: .5em .5em 1em 0 rgba(0,0,0,0.18);
    box-shadow: .5em .5em 1em 0 rgba(0,0,0,0.18);
    display: flex;
}

.navigationbar ul
{
    list-style-type: none;
    overflow: hidden;
}

.navigationbar ul li
{
    float: left;
    color: #FFFFFF;
}

.navigationbar ul li a 
{
    height: 100%;
    display: block;
    color: #FFFFFF;
    text-align: center;
    text-decoration: none;
    padding: 1em;
    border-bottom: .1em solid transparent;
    font-family: 'Open Sans', sans-serif;
    font-size: 1em;
    font-weight: 700;
}

.navigationbar ul li a:hover
{
    background: #00A99D;
    color: #FFFFFF;
    border-bottom: .1em solid #000000;
}

.navigationbar img
{
    float: left;
    max-width: 45px;
    max-height: 45px;
    padding-top: .3em;
}

.active 
{
    background-color: #0FF4C6;
    color: #FFFFFF;
}

/* Themes.html */

.themeslist ul
{
    list-style-type: circle;
    display: list-item;
    padding: 1em;
}

.themeslist ul li
{
    list-style-type: circle;
    display: list-item;
    padding: 1em;
}


/* Pricing.html */


.pricingalternative
{ 
    background-color: #FFFFFF;
    border: .1em solid #000000;    
    margin-top: .5em;
    margin-bottom: .5em;;
}

.pricingalternative ~ .pricingalternative
{
    margin-left: 1em;
}

.pricingtable
{
    border: .1em solid #000000;
    border-radius: 0em 0em 1em 0em;
    -webkit-border-radius: 0em 0em 1em 0em;
    -moz-border-radius: 0em 0em 1em 0em;
    border-collapse: collapse;
    overflow: hidden;
}

.pricingtable td
{
    border: .1em solid #000000;
    padding: .5em 1em;
}

.pricingtable tr:nth-child(even)
{
    background-color: rgba(0, 169, 157, 0.05);
}

td:empty:after, th:empty:after 
{
    content: "\00a0";
}

/* Contact.html */

.buttonsubmit
{
    color: #FFFFFF;
    font-size: 1em;
    background: #00A99D;
    padding: .5em .5em .5em .5em;
    text-decoration: none;
    border-radius: 2em;
    -webkit-border-radius: 2em;
    -moz-border-radius: 2em;
}

fieldset
{
    padding: 1em;
}

form  
{ 
    display: table;
    padding: 1em;
}

form p     
{ 
    display: table-row;  
}

label 
{ 
    width: 7em;
    display: table-cell; 
    vertical-align: middle;
}

input 
{ 
    display: table-cell;
    margin: .5em 0em;
}

.right
{
    float: right;
}

textarea
{
    margin: .5em 0em;
}


input[type="text"], input[type="tel"], input[type="email"]
{
    background-color: #FFFFFF;
}


/* Carousel in Pure CSS - from https://codepen.io/SitePoint/pen/MyPVdK */
.carousel
{
    position: relative;
    width: 100vw;
}

.carousel-inner 
{
    position: relative;
    overflow: hidden;
    width: 100%;
    max-height: 100%;
}

.carousel-item
{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    opacity: 0;
    transition: all 0.5s ease-in-out;    
}

.carousel-open:checked + .carousel-item 
{
    position: static;
    opacity: 1;
}

.carousel-item 
{
    position: absolute;
    opacity: 0;
    -webkit-transition: opacity 0.6s ease-out;
    transition: opacity 0.6s ease-out;
}

.carousel-item img 
{
    display: block;
    max-width: 100%;
}

.carousel-control 
{
    background: rgba(0, 0, 0, 0.28);
    border-radius: 50%;
    color: #FFFFFF;
    cursor: pointer;
    display: none;
    font-size: 2em;
    height: 1.3em;
    width: 1.3em;
    line-height: 1em;
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    cursor: pointer;
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    text-align: center;
    z-index: 10;
}

.carousel-control.prev 
{
    left: 2%;
}

.carousel-control.next 
{
    right: 2%;
}

.carousel-control:hover 
{
    background: rgba(0, 0, 0, 0.8);
    color: #AAAAAA;
}

#carousel-1:checked ~ .control-1,
#carousel-2:checked ~ .control-2,
#carousel-3:checked ~ .control-3 
{
    display: block;
}

.carousel-indicators 
{
    list-style: none;
    margin: 0;
    padding: 0;
    position: absolute;
    bottom: 2%;
    left: 0;
    right: 0;
    text-align: center;
    z-index: 10;
}

.carousel-indicators li 
{
    display: inline-block;
    margin: 0 5px;
}

.carousel-bullet 
{
    color: #fff;
    cursor: pointer;
    display: block;
    font-size: 2em;
}

.carousel-bullet:hover 
{
    color: #aaaaaa;
}

#carousel-1:checked ~ .control-1 ~ .carousel-indicators li:nth-child(1) .carousel-bullet,
#carousel-2:checked ~ .control-2 ~ .carousel-indicators li:nth-child(2) .carousel-bullet,
#carousel-3:checked ~ .control-3 ~ .carousel-indicators li:nth-child(3) .carousel-bullet 
{
    color: #428bca;
}

input[type=radio].hidden 
{
    display: none;
}

