﻿
/* CheckBox */

input[type="checkbox"] {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    margin: 0 8px;
    display: inline-block !important; 
}

input[type="radio"] {
    -webkit-transform: scale(1.5);
    -moz-transform: scale(1.5);
    -ms-transform: scale(1.5);
    -o-transform: scale(1.5);
    transform: scale(1.5);
    margin: 0 10px;
    display: inline-block !important;
}


.BottoneForMobile {
    margin-top: 0;    
}

.BorderRadius {
    border-radius: 12px;
    border: 1px solid Gray;
    margin: 10px;
}

.control-animation {
    border-radius: 25px;
    margin: 10px;
    -webkit-animation-name: blinker;
    -webkit-animation-iteration-count: infinite;
    -webkit-animation-timing-function: cubic-bezier(.5, 0, 1, 1);
    -webkit-animation-duration: 0.9s;
    /*color: green;*/
}

/* GRIDVIEW */

.Gridheader {
    background-color: #293e5f;
    color: white;
    height: 32px; 
    font-family: 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    vertical-align: central; 
}

.GridPager a, .GridPager span {
    padding-left: 5px;
    padding-right: 5px;
    display: block;
    text-decoration: none;
    width: 100%;
}

.GridPager a {
    color: black;
    text-align: center;
    padding: 5px;
}

.GridPager span {
    background-color:  #293e5f;
    color: white;
    text-align: center;
    padding: 5px;
}


@media only screen and (max-width: 768px) {

    .BottoneForMobile {
        text-align:center;
        margin-top: 10px;
    } 
}