/* ********************
* Page styles
******************** */
@-webkit-viewport   { width: device-width; }
@-moz-viewport      { width: device-width; }
@-ms-viewport       { width: device-width; }
@-o-viewport        { width: device-width; }
@viewport           { width: device-width; }


html, body {
	-ms-text-size-adjust: 100%;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-smooth: always;
	font-size: 16px;
	font-smooth: always;
	font-family: 'LatoWeb', sans-serif;
	color: #666;
}

div.page-header {
    font-family: 'LatoWebLight', sans-serif;
    font-size: 1.4em;
    margin-top: 20px;
}

div.page-header, h1 {
    font-family: 'LatoWebLight', sans-serif;
}

p {
    padding: 10px 0 0 0;
}

a, button, h1, h2, ul {
	-webkit-transition: all 300ms;
	-moz-transition: all 300ms;
	-ms-transition: all 300ms;
	-o-transition: all 300ms;
	transition: all 300ms;
}

a, button {
	outline: none !important;
	text-decoration: none;
}


/* ******************
// Content
******************* */
#open-project-tags .label {
	margin-right: 5px;
}


/* ******************
// kani + code
******************* */
@-webkit-keyframes rotating {
    from {
        -webkit-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotating {
    from {
        -ms-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -ms-transform: rotate(360deg);
        -moz-transform: rotate(360deg);
        -o-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

div.app-header {
    font-family: 'LatoWebLight', sans-serif;
    padding: 20px;
    font-size: 3em;
}

div.app-header span.label {
    font-size: 14px;
}

.close-tab {
    display: inline-block;
    padding: 0 5px;
    cursor: pointer;
    margin-left: 10px;
}

div.main {
    min-height: 100vh;
}
/*
div.kani-preloader>i {
    color: #777;
    padding: 0;
    margin: 0;
    display: block;
    width: 64px;
    height: 64px;
    line-height: 64px;
    text-align: center;
    font-size: 64px;
    margin: 64px auto 0 auto;
    -webkit-animation: rotating 2s linear infinite;
    -moz-animation: rotating 2s linear infinite;
    -ms-animation: rotating 2s linear infinite;
    -o-animation: rotating 2s linear infinite;
    animation: rotating 2s linear infinite;
}

.kani-overlay {
    position: fixed;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,.85);
    z-index: 1000;
}
*/
/* **********************
// OVERLAY
*********************** */
div.kani-overlay {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(0,0,0,0.85);
    z-index: 1070;
    overflow-x: hidden;
    overflow-y: auto;
}

/* **********************
// PRELOADER
*********************** */
div.kani-preloader {
    border: 5px solid #666;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 1075;
    margin: -32px 0 0 -32px;
    -webkit-animation: short-pulse 1s ease-out;
    -webkit-animation-iteration-count: infinite;
    opacity: .0
}

@-webkit-keyframes short-pulse {
    0% {-webkit-transform: scale(.1, .1); opacity: .0;}
    50% {opacity: 1;}
    100% {-webkit-transform: scale(1.2, 1.2); opacity: .0;}
}

.select2-dropdown,
.select2-container--default .select2-selection--single,
.select2-container--default .select2-selection--multiple,
.select2-container--default .select2-selection--multiple .select2-selection__choice,
.select2-container--classic .select2-selection--single,
.select2-container--classic .select2-selection--multiple,
.select2-container--classic .select2-selection--multiple .select2-selection__choice
{
    border-radius: 0;
}
