
body{
    font-family: "Open Sans";
    margin: 0;
    padding: 0;
    background-color: #F0F0F0;
    height: 100%;
}
header{ height: 64px; background: #505050}
.logo{margin-left: 50px;}
.logo .before-img{
    content: "";
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}
.logo img{
    max-height: 80%;
    max-width: 117px;
    margin: 0 11px 0 0;
    display: inline-block;
    vertical-align: middle;
}

.body{
    height: calc(100% - 78px);
    overflow: auto;
}

.body .title{
    margin-top: 64px;
}

.body .title h1{
    color: #000;
    font-size: 36px;
    font-weight: 300;
    text-align: center;
    margin: 0 0 10px 0;
}

.body .title h3{
    color: #888B8D;
    font-size: 16px;
    font-weight: normal;
    text-align: center;
    margin: 0;
}

.content{
    padding: 0 50px;
    margin: 40px 0 30px 0;
}

.additional-info {
    padding: 0 50px;
    margin-bottom: 30px;
}

.ui-dialog{
    z-index: 5;
}

.ui-dialog .ui-dialog-titlebar{
    padding: 20px 25px;
}

.ui-dialog .ui-dialog-title{
    font-size: 20px;
    font-weight: 300;
    color: #4D4D4D;
    float: left;
    position: relative;
}

.ui-dialog .ui-dialog-titlebar-close,
.ui-dialog .ui-dialog-titlebar-close.ui-state-hover,
.ui-dialog .ui-dialog-titlebar-close.ui-state-focus,
.ui-dialog .ui-dialog-titlebar-close.ui-state-active{
    position: absolute;
    top: 15px;
    right: 10px;
    background: none;
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

.ui-dialog .ui-dialog-content{
    padding: 0 25px;
    color: #888B8D;
    font-size: 13px;
    font-weight: 400;
}

.footer{
    border-top: 1px solid #e4e4e4;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: #F0F0F0;
}

.footer .buttons{
    float: right;
    padding: 20px 43px;
    background: #F0F0F0;
    text-align: center;
}

.ui-dialog .ui-dialog-buttonpane {
    padding: 15px 20px;
    box-shadow: none;
    float: none;
    width: auto;
    border-top: 1px solid #e4e4e4;
    text-align: right;
}

.footer .buttons button,
.ui-dialog .ui-dialog-buttonpane button{
    border: none;
    background: none;
    font-size: 14px;
    height: 37px;
    padding: 0 50px;
    margin: 0 10px;
    cursor: pointer;
    border-radius: 2px;
    font-family: "Open Sans";
}

.footer .buttons .accept,
.ui-dialog .ui-dialog-buttonpane button.primary-btn{
    color: #fff;
    background-color: #10BDC7;

}

.footer .buttons .decline{
    color: #777;

}

.ui-dialog .ui-dialog-buttonpane button{
    height: 32px;
    padding: 0 20px;
    margin: 0 5px;
    color: #777;
}

.ui-widget-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000;
    opacity: .3;
}
a:link, a:visited {
    color: #888D8D;
}
.loading {
    display: none;
    left: 0px; 
    width: calc(100%);
}
.loader-circle {
    -webkit-animation: rotate 1s linear infinite;
    -moz-animation: rotate 1s linear infinite;
    animation: rotate 1s linear infinite;
    height: 50px;
    position: absolute;
    width: 50px;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    bottom: 0;
    box-shadow: 0px 0px 2px 1px #ddd;
    border-radius: 100%;
    background: #fff;
}
.loader-shape {
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    -webkit-animation: dash 1.5s ease-in-out infinite;
    animation: dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: #10BCC7 ;
}

@-webkit-keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@-webkit-keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124;
    }
}
@keyframes dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35;
    }
    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124;
    }
}