﻿@import url(//fonts.googleapis.com/css?family=Roboto:400,500,700);

body {
    min-width: 1280px;
    /*margin-left: auto;
    margin-right: auto;*/
    margin: 0 auto;
    font-style: normal;
    font-size: 12px;
    font-family: 'Roboto', Arial;
}

.validation-error {
    color: #EF2020;
    margin-top: 3px;
    font-size: 12px;
}

.separator {
    border-top: 1px solid #C6C6C6;
}

.form {
    padding: 20px;
}

    .form .form-item {
        display: block;
        width: 100%;
        margin-top: 10px;
        box-sizing: border-box;
    }

        .form .form-item * {
            display: block;
            margin-top: 2px;
        }

        .form .form-item .form-item-text, .form-item-text {
            -webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
            -moz-box-sizing: border-box; /* Firefox, other Gecko */
            box-sizing: border-box; /* Opera/IE 8+ */
        }

        .form .form-item .form-item-button {
            border-color: #A1C957;
            background-color: #A1C957;
            text-transform: uppercase;
            text-align: center;
            color: white;
            cursor: pointer;
        }

        .form .form-item label {
            color: #606060;
            text-transform: uppercase;
            font-weight: bold;
        }


        .form .form-item input {
            width: 100%;
            padding: 10px;
        }

        .form .form-item input, .form-item input {
            border-radius: 3px;
            border: 1px solid #C6C6C6;
            color: #606060;
            font-size: 14px;
            background-color: #f2f2f2;
        }

.form-item input {
    padding: 6px 10px 6px 10px;
}


.img-edubox {
    width: 94px;
    height: 40px;
    outline: none;
}


.button.button-sticky {
    padding: 9px 9px;
    margin: 0;
    border-radius: 3px!important;
    font-size: 15px;
    max-width:30px;
}

.button-big {
    font-size: 14px;
    padding: 10px 20px 10px 20px;
}

.button-small {
    font-size: 12px;
    padding: 5px 10px 5px 10px;
}

.button {
    display: inline;
    color: #A1C957;
    border: 1px solid #A1C957;
    background-color: transparent;
    border-radius: 3px;
    cursor: pointer;
    text-decoration: none;
    text-transform: uppercase;
    outline: none;
}

    .button:hover {
        background-color: #A1C957;
        color: #FFFFFF;
    }

.control-button {
    text-align: right;
}

.table-container {
    padding: 1px;
}


.table {
    width: 100%;
    background-color: #FFFFFF;
    border: 0px;
}

    /*.table tr:not(:last-child)*/
    .table tr /*:not(.table-pager)*/ {
        border: 1px solid #C6C6C6;
    }

    /*.table tr {
            border: 1px solid #F7F7F7;
            background-color: #F7F7F7;
        }*/

    .table td, .table th {
        border: 0px;
        padding: 10px;
    }

    .table th {
        font-size: 14px;
        font-weight: bold;
        color: #606060;
        text-align: left;
        text-transform: uppercase;
    }

    .table .no-data td {
        text-align: center;
    }

.loading{
    background-color: rgba(0,0,0,0.5);
    position: fixed;
    top: 0;
    bottom:0;
    left: 0;
    right:0;
    cursor: default !important;
    display: none;
}
.spinner {
  margin: auto;
  width: 100%;
  text-align: center;
  top: 50%;
  position: absolute;
}

.spinner > div {
  width: 24px;
  height: 24px;
  background-color: white;

  border-radius: 100%;
  display: inline-block;
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}

.spinner .bounce1 {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}

.spinner .bounce2 {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}

@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}


.text-center{

    text-align:center;
}


