body {
    font-family: Roboto, tahoma, verdana;
    background: #fff;
}

button {
    cursor: pointer;
}

.label-warning {
    background-color: #FF9B17;
}

.text-red {
    color: #F00;
}

/*check box list*/
.checkbox {
    padding-left: 20px;
}
.checkbox label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px;
}
.checkbox label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    transition: border 0.15s ease-in-out, color 0.15s ease-in-out;
    border-radius: 3px;
}
.checkbox label::after {
    display: inline-block;
    position: absolute;
    width: 16px;
    height: 16px;
    left: 0;
    top: 0;
    margin-left: -20px;
    padding-left: 3px;
    padding-top: 1px;
    font-size: 11px;
    color: #555555;
}
.checkbox input[type="checkbox"],
.checkbox input[type="radio"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.checkbox input[type="checkbox"]:disabled,
.checkbox input[type="radio"]:disabled {
    cursor: not-allowed;
}

.checkbox input[type="checkbox"]:focus + label::before,
.checkbox input[type="radio"]:focus + label::before {
    outline: 0;
    outline-offset: -2px;
}
.checkbox input[type="checkbox"]:checked + label::after {
    font-family: "FontAwesome";
    content: "\f00c";
}
.checkbox input[type="checkbox"]:disabled + label,
.checkbox input[type="radio"]:disabled + label {
    opacity: 0.65;
}
.checkbox input[type="checkbox"]:disabled + label::before,
.checkbox input[type="radio"]:disabled + label::before {
    background-color: #eeeeee;
    cursor: not-allowed;
}
.checkbox.checkbox-circle label::before {
    border-radius: 50%;
}
.checkbox.checkbox-inline {
    margin-top: 0;
}

.checkbox-primary input[type="checkbox"]:checked + label::before,
.checkbox-primary input[type="radio"]:checked + label::before {
    background-color: #337ab7;
    border-color: #337ab7;
}
.checkbox-primary input[type="checkbox"]:checked + label::after,
.checkbox-primary input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-danger input[type="checkbox"]:checked + label::before,
.checkbox-danger input[type="radio"]:checked + label::before {
    background-color: #d9534f;
    border-color: #d9534f;
}
.checkbox-danger input[type="checkbox"]:checked + label::after,
.checkbox-danger input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-info input[type="checkbox"]:checked + label::before,
.checkbox-info input[type="radio"]:checked + label::before {
    background-color: #5bc0de;
    border-color: #5bc0de;
}
.checkbox-info input[type="checkbox"]:checked + label::after,
.checkbox-info input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-warning input[type="checkbox"]:checked + label::before,
.checkbox-warning input[type="radio"]:checked + label::before {
    background-color: #f0ad4e;
    border-color: #f0ad4e;
}
.checkbox-warning input[type="checkbox"]:checked + label::after,
.checkbox-warning input[type="radio"]:checked + label::after {
    color: #fff;
}

.checkbox-success input[type="checkbox"]:checked + label::before,
.checkbox-success input[type="radio"]:checked + label::before {
    background-color: #5cb85c;
    border-color: #5cb85c;
}
.checkbox-success input[type="checkbox"]:checked + label::after,
.checkbox-success input[type="radio"]:checked + label::after {
    color: #fff;
}

td .checkbox,
th .checkbox {
    margin: 0;
}

.radio {
    padding-left: 20px;
}

.radio label {
    display: inline-block;
    vertical-align: middle;
    position: relative;
    padding-left: 5px !important;
}

.radio p {
    padding-left: 5px;
}

.radio label::before {
    content: "";
    display: inline-block;
    position: absolute;
    width: 17px;
    height: 17px;
    left: 0;
    margin-left: -20px;
    border: 1px solid #cccccc;
    border-radius: 50%;
    background-color: #fff;
    -webkit-transition: border 0.15s ease-in-out;
    -o-transition: border 0.15s ease-in-out;
    transition: border 0.15s ease-in-out;
    outline: 0;
}
.radio label::after {
    display: inline-block;
    position: absolute;
    content: " ";
    width: 11px;
    height: 11px;
    left: 3px;
    top: 3px;
    margin-left: -20px;
    border-radius: 50%;
    background-color: #555555;
    -webkit-transform: scale(0, 0);
    -ms-transform: scale(0, 0);
    -o-transform: scale(0, 0);
    transform: scale(0, 0);
    -webkit-transition: -webkit-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -moz-transition: -moz-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    -o-transition: -o-transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
    transition: transform 0.1s cubic-bezier(0.8, -0.33, 0.2, 1.33);
}
.radio input[type="radio"] {
    opacity: 0;
    z-index: 1;
    cursor: pointer;
}

.radio input[type="radio"]:disabled {
    cursor: not-allowed;
}

.radio input[type="radio"]:focus + label::before {
    outline: 0;
    outline-offset: -2px;
}
.radio input[type="radio"]:checked + label::after {
    -webkit-transform: scale(1, 1);
    -ms-transform: scale(1, 1);
    -o-transform: scale(1, 1);
    transform: scale(1, 1);
}
.radio input[type="radio"]:disabled + label {
    opacity: 0.65;
}
.radio input[type="radio"]:disabled + label::before {
    cursor: not-allowed;
}
.radio.radio-inline {
    margin-top: 0;
}

.radio-primary input[type="radio"] + label::after {
    background-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::before {
    border-color: #337ab7;
}
.radio-primary input[type="radio"]:checked + label::after {
    background-color: #337ab7;
}

.radio-danger input[type="radio"] + label::after {
    background-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::before {
    border-color: #d9534f;
}
.radio-danger input[type="radio"]:checked + label::after {
    background-color: #d9534f;
}

.radio-info input[type="radio"] + label::after {
    background-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::before {
    border-color: #5bc0de;
}
.radio-info input[type="radio"]:checked + label::after {
    background-color: #5bc0de;
}

.radio-warning input[type="radio"] + label::after {
    background-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::before {
    border-color: #f0ad4e;
}
.radio-warning input[type="radio"]:checked + label::after {
    background-color: #f0ad4e;
}

.radio-success input[type="radio"] + label::after {
    background-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::before {
    border-color: #5cb85c;
}
.radio-success input[type="radio"]:checked + label::after {
    background-color: #5cb85c;
}

input[type="checkbox"].styled:checked + label:after {
    font-family: 'FontAwesome';
    content: "\f00c";
}
input[type="checkbox"] .styled:checked + label::before,
input[type="radio"] .styled:checked + label::before {
    color: #fff;
}
input[type="checkbox"] .styled:checked + label::after,
input[type="radio"] .styled:checked + label::after {
    color: #fff;
}
/*end check box list*/

.btn .fa {
    margin-right: 5px;
}

.btn .fa.fa-trash {
    margin-right: 0;
}

.btn-round {
    border-radius: 50px;
    padding-left: 30px;
    padding-right: 30px;
}

.btn-primary {
    background-color: #092c48;
    border-color: #092c48;
}

.btn-primary:hover,
.btn-primary:focus {
    background-color: #092c48;
    border-color: #092c48;
}

.btn-primary:active,
.btn-primary:active:hover,
.btn-primary:active:focus {
    background-color: #092c48;
    border-color: #092c48;
}

.btn-outline-primary {
    color: #092c48;
    background-color: transparent;
    background-image: none;
    border-color: #092c48;
}

.btn-outline-primary.active,
.btn-outline-primary:active,
.show>.btn-outline-primary.dropdown-toggle,
.btn-outline-primary:hover {
    background-color: #092c48;
    border-color: #092c48;
}


.btn-danger {
    background-color: #d14c56;
    border-color: #d14c56;
}

.btn-danger:hover,
.btn-danger:focus {
    background-color: #df4c56;
    border-color: #df4c56;
}

.btn-danger:active,
.btn-danger:active:hover,
.btn-danger:active:focus {
    background-color: #df4c56;
    border-color: #df4c56;
}


.btn-info {
    background-color: #586bb0;
    border-color: #586bb0;
}

.btn-info:hover,
.btn-info:focus {
    background-color: #687abf;
    border-color: #687abf;
}

.btn-info:active,
.btn-info:active:hover,
.btn-info:active:focus {
    background-color: #687abf;
    border-color: #687abf;
}

.carousel .carousel-control,
.carousel .carousel-indicators {
    opacity: 0;
    filter: alpha(opacity=0);
}

.carousel:hover .carousel-control,
.carousel:hover .carousel-indicators {
    opacity: 1;
    filter: alpha(opacity=100);
    background: none;
}

@media (min-width: 1200px){
    .container {
        width: 950px;
    }
}

.inline-block {
    display: inline-block;
}

.page-alert {
    border: 1px solid #ccc;
    padding: 60px;
    background: #FFF;
    margin: 100px auto;
    border-radius: 5px;
}

.page-alert > h1 {
    font-size: 24px;
    margin: 0 0 15px 0;
}

.page-alert p {
    font-size: 15px;
}

.page-alert .lr-action {
    margin-top: 30px;
}

.fixed-bottom {

}

.lr-signup-box {
    padding: 50px 0;
}

.lr-signup-box .lr-head {
    font-size: 24px;
    margin: 0 0 5px 0;
}

.lr-signup-box .signup_use_email {
    margin-top: 30px;
}

.lr-user-nav {
    padding: 0;
}

#logo {
    display: table-cell;
    vertical-align: middle;
    padding: 13px 0;
}

.homepage_header #logo {
    padding: 40px 0;
}

#logo {
    display: inline-block;
    width: 50px;
    height: 0;
    padding: 50px 0 0 0;
    margin: 7px 0 0 0;
    background: url(images/kvn_white.png) no-repeat top left;
    background-size: 50px;
    overflow: hidden;
    font-size: 0;
}

#logo h3 {
    margin: 0;
    color:rgba(255,255,255,.8);
    font-family: 'Roboto';
    font-weight: 700;
    text-transform: uppercase;
    font-size: 2rem;
}

#logo:hover {
    text-decoration: none;
}

#logo:hover h2 {
    color: #fff;
}

.tl-static-page .tl-static-page-content {
    padding-top: 50px;
    padding-bottom: 50px;
}

.tl-static-page .tl_title {
    font-size: 24px;
    font-weight: bold;
    margin: 0 0 30px 0;
}

.tl-static-page .tl-static-page-list {
    padding-top: 50px;
    padding-bottom: 50px;
}

.tl-static-page .left-nav-menu .item a {
    display: block;
    padding: 15px;
    color: #333;
    border-radius: 3px;
    font-size: 14px;
}

.tl-static-page .left-nav-menu .item a .fa {
    margin-right: 15px;
}

.tl-static-page .left-nav-menu .item a.active {
    background: #f4f4f4;
    color: #000;
}

.lr-user-nav.nav>li {
    padding: 21px 0;
}

.homepage_header .lr-user-nav.nav>li {
    padding: 46px 0;
}

.lr-user-nav.nav>li>a {
    color: #fff;
    font-weight: 400;
    font-size: 15px;
    display: table-cell;
    vertical-align: middle;
    padding: 0 20px;
}

.lr-user-nav.nav>li>a:hover {
    text-decoration: underline;
}

.lr-user-nav .rdt-avatar {
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background: #FFF;
    margin-right: 5px;
    margin-top: -4px;
}

.lr-user-nav .dropdown > a,
.lr-user-nav .dropdown > a > .fa {
    color: #333;
}

.lr-user-nav .dropdown > a > .fa {
    margin-left: 5px;
}

#lr_main_menu {
    border: 0;
    box-shadow: none;
}

#top_menu .navbar-nav>li>a {
    display: inline-block;
    font-weight: 700;
    color: #FFF;
    border-left: 1px solid rgba(0,0,0,0.1);
    padding: 10px 15px;
}

#top_menu .navbar-nav>li>a:hover {
    background: rgba(255,255,255,0.1);
    text-decoration: none;
}

#top_menu .navbar-nav>.active>a,
#top_menu .navbar-nav>.active>a:focus,
#top_menu .navbar-nav>.active>a:hover {
    background: rgba(0,0,0,0.2);
}

.dropdown-item:focus, 
.dropdown-item:hover {

}


.red {
    color: #ff3939;
}

.bg-red,
.table-bordered>tbody>tr>th.bg-red {
    background: #ff3939;
    border-color: #ff3939;
}

.bg-orange,
.table-bordered>tbody>tr>th.bg-orange {
    background: #ffa027;
    border-color: #ffa027;
}

.white {
   color: #FFF;
}

.bold {
    font-weight: 700;
}

.hidden {
    display: none;
}

small {
    font-size: 85%;
}

label > small {
    color: #666;
    font-weight: 400;
    margin: 0 5px;
}

large {
    font-size: 120%;
}


#header {
    background: #092c48;
}

#top_menu .navbar {
    padding: 0 15px;
}

.table-nohead > tbody > tr:first-child td {
    border-top: 0;
}

.rdt-left-cor-outer {
    background: rgba(49, 112, 162, 0.2);
}

.rdt-left-cor-mid {
    background: rgba(49, 112, 162, 0.5);
}

.rdt-left-cor {
    background: #092c48 url("images/hero-banner.svg") no-repeat center top;
    background-size: cover;
    color: #FFF;
}

.rdt-right-cor-outer {
    background: rgba(49, 112, 162, 0.2);
}

.rdt-right-cor-mid {
    background: rgba(49, 112, 162, 0.5);
}

.rdt-right-cor {
    background: #092c48 url("images/hero-banner.svg") no-repeat center top;
    background-size: cover;
    color: #FFF;
}

.rdt-header {
    display: block;
    position: relative;
    padding: 10px 0 450px 0;
    margin-bottom: 150px;
    text-align: center;
}

.rdt-header .rdt-pic {
    position: absolute;
    bottom: -50px;
    left: calc(50% - 271px);
}

.rdt-header .rdt-pic .rdt-pic-content {
    border: 1px solid #000;
}

.rdt-frame {
    background: #FFF;
    box-shadow: 0 0 5px rgba(0,0,0,0.3);
    border-radius: 10px 10px 0 0;
    padding: 20px;
    display: inline-block;
    position: relative;
}

.rdt-frame::before {
    content: " ";
    display: block;
    width: 6px;
    height: 6px;
    border-radius: 6px;
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 7px;
    left: calc(50% - 3px);
}

.rdt-frame::after {
    content: "RADETO";
    display: block;
    width: 120%;
    height: 20px;
    background: #FFF;
    border-top: 1px solid rgba(0,0,0,0.1);
    border-radius: 0 0 30px 30px;
    position: absolute;
    bottom: -15px;
    left: -10%;
    color: #092c48;
    font-size: 10px;
    line-height: 20px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2);
}

.rdt-frame .rdt-dot {
    position: absolute;
    top: -30px;
    left: -22px;
}

.rdt-frame .rdt-dot > span {
    display: block;
    margin-bottom: 2px;
    text-align: left;
    height: 4px;
}

.rdt-frame .rdt-dot > span > s {
    display: inline-block;
    width: 2px;
    height: 2px;
    background: rgba(255,255,255,0.4);
    margin: 2px;
}

.rdt-header .rdt-slogan {
    font-size: 33px;
    font-weight: 500;
    margin: 30px 0 15px 0;
    text-transform: uppercase;
}

.rdt-header .rdt-desc {
    font-size: 16px;
    font-weight: 400;
    margin: 0 auto 50px auto;
    width: 70%;
}

.rdt-header .rdt-cta {
    font-size: 16px;
    font-weight: 700;
    background: #7CBE00;
    color: #FFF;
    border-radius: 30px;
    padding: 10px 30px;
    border: 1px solid #7CBE00;
    margin-right: 15px;
}

.rdt-header .rdt-cta:hover {
    text-decoration: none;
    background: #86cc00;
}

.rdt-header .rdt-link {
    font-size: 16px;
    font-weight: 400;
    background: none;
    color: #FFF;
    border-radius: 30px;
    padding: 10px 30px;
    border: 1px solid #FFF;
}

.rdt-header .rdt-link:hover {
    text-decoration: none;
    background: rgba(255,255,255,0.1);
}

.rdt-block,
.rdt-cta-block {
    margin: 50px 0 0 0;
    padding: 50px 0;
}

.rdt-cta-block {
    text-align: center;
}

.rdt-cta-block h3 {
    margin: 0 0 30px 0;
}

.rdt-footer-loc {
    padding: 0;
    opacity: .5;
}

.rdt-block h3 {
    display: inline-block;
    position: relative;
    margin: 0 0 30px 0;
}

.rdt-block h3::before {
    content: " ";
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 3px;
    overflow: hidden;
    background: #449de2;
    z-index: -1;
    filter: blur(3px);
}

.rdt-block ul {
    list-style: none;
    margin: 15px 0;
    padding: 0;
    color: #666;
}

.rdt-block ul > li {
    margin-bottom: 15px;
}

.rdt-block ul > li > .fa-caret-right {
    margin-right: 10px;
}

.rdt-block .btn {
    margin: 15px 0;
}

.rdt-block p {
    color: #666;
}

#footer ul li a {
    color: #FFF;
    opacity: .7;
}

#footer ul li a:hover {
    opacity: 1;
}

#remember_login {
    vertical-align: 2px;
    margin-right: 3px;
}

.rdt-signup,
.rdt-login,
.rdt-forgot {
    margin: 100px auto;
    max-width: 400px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #FFF;
    padding: 30px;
}

.rdt-signup {
    margin: 30px auto;
}

.rdt-box-title {
    text-align: center;
    margin: 0 0 30px 0;
    font-size: 30px;
    font-weight: 400
}

.rdt-gray-link,
.forgot_password_link {
    font-size: .8rem;
    color: #666;
}

.rdt-error {
    margin: 100px auto;
    padding: 30px;
}

.rdt-error h3 {
    margin: 0 0 15px 0;
    font-size: 22px;
    font-weight: 400
}

.rdt-team-section {
    margin: 50px auto;
}

.rdt-team-list {
    margin: 15px -15px;
}

.rdt-team-item {
    float: left;
    width: 33.333333%;
    text-align: center;
}

.rdt-project-item-inner {
    display: block;
    padding: 30px;
    border: 1px solid #ccc;
    border-radius: 3px;
    background: #FFFFFF;
}

.rdt-project-item-inner:hover {
    text-decoration: none;
    border-color: #aaa;
}

.rdt-team-logo img {
    width: 100%;
}

.rdt-create-new-team {
    display: block;
    margin: 50px auto;
    text-align: center;
    font-size: 16px;
    font-weight: 400;
    color: #666;
    border: 1px solid #ccc;
    background: #fefefe;
    padding: 15px;
    border-radius: 3px;
}

.rdt-create-new-team:hover {
    color: #333;
    text-decoration: none;
    background: #FFF;
}

.rdt-create-new-team .fa {
    margin-right: 5px;
}

.rdt-team-section .rdt-head {
    padding: 0;
    text-align: left;
    color: #666;
}

.rdt-team-section .rdt-head .rdt-team-name {
    font-size: 20px;
    color: #000;
}

.rdt-team-item .rdt-team-logo {
    display: block;
    border: 1px solid #ccc;
    border-bottom: 0;
    border-radius: 3px 3px 0 0;
    padding: 30px;
    background: #FFF;
}

.rdt-team-item .rdt-team-name {
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: #868e96;
    color: #fff;
    padding: 5px;
    border: 1px solid #868e96;
    border-radius: 0 0 3px 3px;
}

.rdt-team-item a:hover .rdt-team-name {
    background-color: #727b84;
    border-color: #6c757d;
}

.rdt-switch-team {
    margin: 17px;
}

.rdt-team-tab {
    background: #FFF;
    border-bottom: 1px solid #ccc;
}

.rdt-team-tab .nav .nav-link {
    color: #333;
    border-bottom: 2px solid transparent;
}

.rdt-team-tab .nav .nav-link.active {
    border-color: #1A73E8;
}

.rdt-box {
    border: 1px solid #ccc;
    background: #f9f9f9;
    padding: 30px;
    border-radius: 5px;
    margin: 30px 0;
}

.rdt-no-team {
    font-size: 16px;
    text-align: center;
    color: #666;
}

.tl_iu_preview {
    margin: 0 -5px;
}

.tl_iu_preview::after {
    content: "";
    display: block;
    clear: both;
}

.tl_iu_preview .item {
    width: 100px;
    height: 100px;
    position: relative;
    border: 1px solid #ccc;
    float: left;
    margin: 0 5px 5px 5px;
    border-radius: 3px;
}

.tl_iu_preview .item img {
    max-width: 100%;
    max-height: 100%;
}

.tl_iu_preview .item .tl_ui_item_remove {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1px 5px;
    background: #333;
    color: #FFF;
}

.tl_iu_preview .item .tl_ui_item_remove:hover {
    background-color: #F00;
}

input[type="number"] {
    text-align: right;
}

.dropdown-item.has-icon {
    position: relative;
    padding-left: 35px;
}

.dropdown-item.has-icon .fa {
    position: absolute;
    top: 9px;
    left: 15px;
    font-size: .8rem;
}

.dropdown-item.has-icon .fa-check {
    color: #7CBE00;
}

.rdt-setting-row {
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #eee;
}

.rdt-page-title {
    font-size: 1.2rem;
    display: block;
    margin: 0 0 30px 0;
}

.rdt-highlight-box {
    border: 1px solid #ffe3a8;
    padding: 30px;
    border-radius: 3px;
    background: #fffbc9;
}

.no-project {
    font-size: 16px;
    text-align: center;
    color: #666;
    padding: 50px;
}

.rdt-language-label {
    display: inline-block;
    padding: .25em .4em;
    font-size: 75%;
    font-weight: 700;
    line-height: 1;
    color: #fff;
    text-align: center;
    white-space: nowrap;
    vertical-align: baseline;
    border-radius: .25rem;
}

.breadcrumb.inline {
    background: none;
    padding: 0;
    margin: 0;
}

#add_member_modal .rdt-member-list {
    max-height: 400px;
    overflow-y: auto;
}

#add_member_modal .rdt-member-item {
    margin: 0 0 15px 0;
    padding: 0 0 15px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}

#add_member_modal .rdt-member-item:last-child {
    border: 0;
}

#add_member_modal .rdt-member-avatar {
    width: 32px;
    height: 32px;
    border-radius: 32px;
    margin: 0 15px;
}

#add_member_modal .rdt-member-role {
    position: absolute;
    right: 0;
    top: 5px;
}

.rdt-divider-text {
    text-align: center;
    position: relative;
    margin: 15px 0;
}

.rdt-divider-text span {
    color: #999;
    position: relative;
    background: #FFF;
    padding: 0 5px;
    z-index: 2;
}

.rdt-divider-text:after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background: #ccc;
    position: absolute;
    top: 12px;
    z-index: 1;
}

.rdt-project-list {
    margin: 0 -15px;
}

.rdt-project-item {
    position: relative;
    padding: 0;
    margin: 30px 15px 0;
    float: left;
    width: calc(50% - 30px);
}

.rdt-project-item .rdt-role {
    position: absolute;
    top: 0;
    left: 0;
    background: #F30;
    color: #FFF;
    font-size: 11px;
    padding: 1px 5px;
    border-radius: 3px 0 3px 0;
}

.rdt-project-item .rdt-role.rdt-role-guest {
    background: #259;
}

.rdt-project-item .rdt-role.rdt-role-member {
    background: #0dae11;
}

.rdt-project-item .rdt-role.rdt-role-manager {
    background: #d14c56;
}

.rdt-project-item .rdt-role.rdt-role-owner {
    background: #8403b3;
}

.rdt-project-name {
    display: block;
    font-size: 22px;
    color: #333;
    margin: 0 0 5px;
}

.rdt-project-desc {
    font-size: 15px;
    color: #666;
}

.rdt-project-action {
    position: absolute;
    top: 15px;
    right: 15px;
}

.rdt-project-action > a {
    font-size: 5px;
    color: #999999;
    padding: 10px 5px;
}

.rdt-project-action > a:hover {
    color: #000;
}

.rdt-project-action > a > .fa {
    margin-left: 2px;
}

.page_notice {
    position: fixed;
    border: 1px #FFB100 solid;
    padding: 10px;
    bottom: 50px;
    right: 50px;
    background: #FFFDD0;
    z-index: 9;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(0,0,0,0.3);
}

.rm-box-border {
    border: 1px solid #ccc;
    border-radius: 3px;
    padding: 30px;
    margin: 30px 0;
    background: #f9f9f9;
}

.rm-head-page-box {
    font-size: 18px;
    font-weight: 700;
    margin: 0 0 15px 0;
}

.rm-user-info {
    margin: 0 0 15px 0;
}

.rm-user-avatar-link {
    display: block;
    margin: 0 0 5px;
}

.rm-user-avatar {
    width: 100%;
}

.rm-user-fullname-link .rm-user-fullname {
    font-size: 15px;
    font-weight: 400;
    color: #333;
}

.rm-profile-tab .nav-link {
    color: #333;
    font-size: 13px;
}

.rm-profile-tab .nav-link.active {
    background: #FFFFFF;
    color: #333;
}

.dropdown-menu {
    box-shadow: 0 3px 12px rgba(27,31,35,.15), 0 0 1px rgba(27,31,35,.2);
    border: 0;
}

.edit_link {
    font-size: 13px;
}

.rm-notification-item a {
    display: block;
    font-size: 14px;
    padding: 15px 0;
    border-top: 1px solid #ccc;
    color: #333;
}


.rm-notification-item .fa {
    font-size: 18px;
    vertical-align: -1px;
    margin-right: 3px;
}

.rm-notification-item a.unread .content {
    font-weight: 700;
}

.rm-notification-item a:hover {
    text-decoration: none;
}

.rm-notification-item .time {
    display: block;
    margin: 5px 0 0 20px;
    color: #666;
    font-size: 12px;
}
