/*
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 : Dec 15, 2015, 12:22:50 PM
    Author     : Emko
*/

@font-face{
    font-family:'SkodaPro';
    src: url('SkodaPro-Regular.ttf');
}

body{
    color: black;
    font-family: "SkodaPro", Verdana;
    text-align: center;
} 

#wrapper{
    max-width: 790px;
    margin: 0 auto;
    padding-top: 50px;
}

#header{
    margin-bottom: 20px;
}

#columns{
    margin-bottom: 20px;
}

/*BACK BUTTON*/

#backButton{
    width: 34px;
    height: 34px;
    border: 1px solid #5cab47;
    display: inline-block;
    vertical-align: middle;
    margin-right: 15px;
    background: url('../img/left.png') center center no-repeat;
}

#backButton:hover{
    cursor: pointer;
    border: 1px solid #009900;
}

/*DROPDOWN MENU*/

#topDropdown .dropdown{
    display: inline-block;
    vertical-align: middle;
    margin-right: 49px;   
}

#topDropdown .dropdown-menu{
    width: 100%;
    left: 50%;
    right: auto;
    transform: translate(-50%, 0);
    border-radius: 0;
    margin-top: 0;
    border: 0;
}

#topDropdown .dropdown .downCaret{
    margin-left: 10px;
}

.greenBtn{
    background-color: #5cab47;
    color: white !important;
    border-radius: 0;
    padding-left: 15px;
}

.greenBtn:hover{
    text-decoration: none;
    background-color: #009900;
}

/*COUNTRIES LIST*/

#countries{
    text-align: center;
    color: #5cab47;
}

#countries > span{
    font-size: 10px;
}

#countries > span.active{
    font-weight: bold;
}

/*DETAIL BUTTON*/

#detailButton{
    width: 30%;
    margin: 0 35% 0 35%;
    height: 38px;
    line-height: 38px;
    color: white;
    font-size: 17px;
    background-color: #5cab47;
    margin-bottom: 20px;
}

#detailButton:hover{
    cursor: pointer;
    background-color: #009900;
}

/*RESULT CIRCLE*/

#result{
    width: 110px;
    height: 110px;
    border: 5px solid #5cab47;
    border-radius: 55px;
    margin-top: -90px;
}

#result .resultText{
    width: 70%;
    margin: 0 15% 0 15%;
    color: #5cab47;
}

#result .resultText.value{
    font-size: 22px;
    height: 32px;
    margin-top: 14px;
}

#result .resultText.title{
    font-size: 12px;
    height: 35px;
}

/* HELPER CLASSES */

.segment{
    -webkit-tap-highlight-color: rgba(0,0,0,0); /*ios svg blinking effect hack*/
}

.segment:hover{
    cursor: pointer;
}

.bold{
    font-weight: bold;
}