
.plain {
    font-family: 'Lato', sans-serif;
    background-color: #f2f2f2;
    color: #555;
}

body {
    font-family: 'Lato', sans-serif;
    background-color: #f6f5f9;
    font-size: 16px;
    color: #555;
    -webkit-font-smoothing: antialiased;
    -webkit-overflow-scrolling: touch;
    overflow-x: hidden;
}

/*.row {
    margin-right: 1px;
    margin-left: 1px;
}*/

.feature-style {
    font-family: 'Lato', sans-serif;
    background-color: #f5f4ee; /*#f5f5ee #f2f7f7*/
    font-size: 12px;
    color: #555;
    padding: 20px 10px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

p {
    font-size: 1.1em;
    font-weight: 300;
    line-height: 1.4em;
    color: #5a5561; /*#675f5f */
}
a {
    color: #5d4c93; /*  #1d9ab1*/
}
    a:hover, a:focus {
        color: #825ee5; /*#4de0e9*/
        text-decoration: none;
        outline: 0;
    }

h1 h2 h3 h4 h5 h6 {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 16px;
    color: #333;
}

.title {
    font-family: 'Lato', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: #6d62a7; /*#64b4c4*/
    margin-left: 10px;
}


hr {
    display:block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}


.btn-rounded {
    border-radius: 19px;
    padding-top: 3px;
    padding-bottom: 3px;
    padding-left: 3px;
}

.navbar {
    font-family: 'Oswald', sans-serif;
    padding: 15px 10px;
    background: #7568ab; /*#38606c*/
    border: none;
    border-radius: 2px;
    margin-bottom: 15px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.navbar-brand {
    padding-left: 5px;
}
.navbar-btn {
    box-shadow: none;
    outline: none !important;
    border: none;
}

.dropdown-item {
    color: #565675; 
}

    .dropdown-item:hover {
        color: #9e8fc2;
    }
    .dropdown-item:focus {
        color: #fff;
        background: #777ac5;
    }

.line {
    width: 100%;
    height: 1px;
    border-bottom: 1px dashed #ddd;
    margin: 40px 0;
}

header, main, footer {
    padding-left: 240px;
}

@media only screen and (max-width : 992px) {
    header, main, footer {
        padding-left: 10px;
    }
}

.wrapper {
    display: flex;
    width: 100%;
    align-items: stretch;
    perspective: 1500px;
    
}

#sidebar {
    min-width: 250px;
    max-width: 250px;
    background: #efedf5;
    color: #fff;
    transition: all 0.6s cubic-bezier(0.945, 0.020, 0.270, 0.665);
    transform-origin: bottom left;
}

    #sidebar.active {
        margin-left: -250px;
        transform: rotateY(100deg);
    }

    #sidebar .sidebar-header {
        padding: 30px;
        background: #565675;
        font-family: 'Oswald', sans-serif;
        box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    }


    #sidebar ul.components {
        padding: 10px 25px;
        border-bottom: 1px dashed #ddd;
        font-family: 'Lato', sans-serif;
        font-size: 22px;
    }

.sticky-list {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    padding: 0 0px;
    max-height: 100vh;
    margin-bottom: 10px;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}

    #sidebar ul p {
        color: #fff;
        padding: 5px;
    }

    #sidebar ul li a {
        padding: 5px;
        font-size: 1.1em;
        display: block;
    }

        #sidebar ul li a:hover {
            color: #7386D5;
            background: #fff;
        }

#sidebar ul li.active > a, a[aria-expanded="true"] {
    color: #fff;
    background: #807ac4; /*#85c2c8*/
}

a[data-toggle="collapse"] {
    position: relative;
}

ul ul a {
    font-size: 0.9em !important;
    padding-left: 10px !important;
}

ul.CTAs {
    padding: 20px;
}

    ul.CTAs a {
        text-align: center;
        font-size: 0.9em !important;
        display: block;
        border-radius: 5px;
        margin-bottom: 5px;
    }


#content {
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 10px;
    min-height: 100vh;
    transition: all 0.3s;
}

#sidebarCollapse {
    width: 30px;
    height: 70px;
    background: #686d9c;
    cursor: pointer;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
    margin-top: 10px;
    margin-left: 5px;
    margin-right: 10px;
    color: white;
    font-family: 'Oswald', sans-serif;
}

    #sidebarCollapse span {
        width: 80%;
        height: 2px;
        margin: 0 auto;
        display: block;
        background: #f7d9d7;
        transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
        transition-delay: 0.2s;
    }

        #sidebarCollapse span:first-of-type {
            transform: rotate(30deg) translate(2px, 7px);
        }

        #sidebarCollapse span:nth-of-type(2) {
            opacity: 0;
        }

        #sidebarCollapse span:last-of-type {
            transform: rotate(-30deg) translate(2px, -7px);
        }


    #sidebarCollapse.active span {
        transform: none;
        opacity: 1;
        margin: 5px auto;
    }

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
        transform: rotateY(90deg);
    }

        #sidebar.active {
            margin-left: 0;
            transform: none;
        }    
}

.scrollbar-rare-wind::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-color: #F5F5F5;
    border-radius: 10px;
}

.scrollbar-rare-wind::-webkit-scrollbar {
    width: 12px;
    background-color: #F5F5F5;
}

.scrollbar-rare-wind::-webkit-scrollbar-thumb {
    border-radius: 10px;
    -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
    background-image: -webkit-gradient(linear, left bottom, left top, from(#aea8ed), to(#ffe0e0));
    background-image: -webkit-linear-gradient(bottom, #aea8ed 0%, #ffe0e0 100%);
    background-image: linear-gradient(to top, #aea8ed 0%, #ffe0e0 100%);
}
/*#fed6e3*/

.square::-webkit-scrollbar-track {
    border-radius: 0 !important;
}

.square::-webkit-scrollbar-thumb {
    border-radius: 0 !important;
}

.thin::-webkit-scrollbar {
    width: 6px;
}

/*.......COLORS........*/


/*'O1': orange*/
.emph-red {
    color: #ff0000;
    /*background-color: #ff0000;*/
}

.postag-O1 {
    color: #555;
    background-color: #ff0000;
}

/*'O2': orange*/
.postag-O2 {
    color: #555;
    background-color: #ca8dd8;
}

/*'G1': orange*/
.postag-G1{
    color: #555;
    background-color: #f6b894;
}
/*'G2': orange*/
.postag-G2 {
    color: #555;
    background-color: #f6b894;
}
/*'N1': yellow*/
.postag-N1 {
    color: #555;
    background-color: #ffdf85;
}
/*'N2': yellow*/
.postag-N2{
    color: #555;
    background-color: #ffdf85;
}
/*'B1': green*/
.postag-B1{
    color: #555;
    background-color: #9edebd;
}
/*'B2': green*/
.postag-B2{
    color: #555;
    background-color: #b7db82;
}
/*'H1A': pink*/
.postag-H1A{
    color: #555;
    background-color: #ff9999;
}
/*'H1D': pink*/
.postag-H1D {
    color: #555;
    background-color: #ff9999;
}
/*'H1E': pink*/
.postag-H1E {
    color: #555;
    background-color: #ff9999;
}
/*'H1F': pink*/
.postag-H1F {
    color: #555;
    background-color: #ff9999;
}
/*'H1H': pink*/
.postag-H1H {
    color: #555;
    background-color: #ff9999;
}
/*'H1C': pink*/
.postag-H1C {
    color: #555;
    background-color: #ff9999;
}
/*'H1W': pink-gray*/
.postag-H1W {
    color: #555;
    background-color: #c6aeae;
}
/*'H1G': pink*/
.postag-H1G {
    color: #555;
    background-color: #ff9999;
}
/*'C1': cyan*/
.postag-C1{
    color: #555;
    background-color: #85d9de;
}
/*'C3': cyan*/
.postag-C3{
    color: #555;
    background-color: #88e4d5;
}
/*'C4': cyan*/
.postag-C4{
    color: #555;
    background-color: #7ad4c6;
}
/*'T1': gray*/
.postag-T1{
    color: #555;
    background-color: #d1cdc7;
}
/*'T2': gray*/
.postag-T2{
    color: #555;
    background-color: #c7cbd1;
}

/*"CC": "gray"*/
.postag-CC {
    color: #555;
    background-color: #d1cdc7;
}
/*"DT": "gray"*/
.postag-DT {
    color: #555;
    background-color: #d1cdc7;
}
/*"IN": "yellow"*/
.postag-IN {
    color: #555;
    background-color: #f5e97d;
}
/*"JJ": "green"*/
.postag-JJ {
    color: #555;
    background-color: #9ede9e;
}
/*"JJR": "green"*/
.postag-JJR {
    color: #555;
    background-color: #9ede9e;
}
/*"JJS": "green"*/
.postag-JJS {
    color: #555;
    background-color: #9ede9e;
}
/*"MD": "pink"*/
.postag-MD {
    color: #555;
    background-color: #f2bbbb;
}
/*"NN": "cyan"*/
.postag-NN {
    color: #555;
    background-color: #84e3e8;
}
/*"NNS": "cyan"*/
.postag-NNS {
    color: #555;
    background-color: #84e3e8;
}
/*"NNP": "cyan"*/
.postag-NNP {
    color: #555;
    background-color: #84e3e8;
}
/*"NNPS": "cyan"*/
.postag-NNPS {
    color: #555;
    background-color: #84e3e8;
}
/*"PRP": "lightblue"*/
.postag-PRP {
    color: #555;
    background-color: #6ea9f0;
}
/*"PRP$": "lightblue"*/
.postag-PRPS {
    color: #555;
    background-color: #6ea9f0;
}
/*"WP": "lightblue"*/
.postag-WP {
    color: #555;
    background-color: #6ea9f0;
}
/*"WP$": "lightblue"*/
.postag-WPS {
    color: #555;
    background-color: #6ea9f0;
}
/*"RB": "orange"*/
.postag-RB {
    color: #555;
    background-color: #f0ab6e;
}
/*"RBR": "orange"*/
.postag-RBR {
    color: #555;
    background-color: #f0ab6e;
}
/*"RBS": "orange"*/
.postag-RBS {
    color: #555;
    background-color: #f0ab6e;
}
/*"WRB": "orange"*/
.postag-WRB {
    color: #555;
    background-color: #f0ab6e;
}
/*"VB": "pink"*/
.postag-VB {
    color: #555;
    background-color: #f2bbbb;
}
/*"VBD": "pink"*/
.postag-VBD {
    color: #555;
    background-color: #f2bbbb;
}
/*"VBG": "pink"*/
.postag-VBG {
    color: #555;
    background-color: #f2bbbb;
}
/*"VBN": "pink"*/
.postag-VBN {
    color: #555;
    background-color: #f2bbbb;
}
/*"VBP": "pink"*/
.postag-VBP {
    color: #555;
    background-color: #f2bbbb;
}
/*"VBZ": "pink"*/
.postag-VBZ {
    color: #555;
    background-color: #f2bbbb;
}

img {
    display: inline-block;
    height: auto;
    max-width: 100%;
}

video {
    margin-top: 10px;
    display: inline-block;
    height: auto;
    max-width: 100%;    
}

.interlocutor-media {
    position: fixed;
    left: 0;
    width: 33.33vw;
    max-width: 800px;
    pointer-events: none;
    z-index: 9999;
    /* Add this to ensure proper positioning */
    margin: 0;
    padding: 0;
    /* Add these to ensure proper box sizing */
    box-sizing: border-box;
}

.dialog-space {
    background-color: #ffffff;
    padding: 6px 4px;
    border-radius: 5px;
}
.tutor-space {
    padding: 6px 4px;
    border-radius: 5px;
}

.dialog-User {
    float: inherit;
    font-size: smaller;
    margin: 2px;
}

.dialog-User-message {
    color: black;
    background-color: #fef2e9;
    margin: 5px;
    padding: 4px 6px;
    border-radius: 15px;
    border: 1px solid #fffef2;
    box-shadow: 0 0 0 0.2rem rgba(255, 207, 172, .30);
    float: inherit;
}

.dialog-Interlocutor {
    font-size: smaller;
    float: inherit;
    margin: 2px;
}

.dialog-Interlocutor-message {
    color: black;
    background-color: #e5f5ff;
    margin: 5px;
    padding: 4px 6px;
    border-radius: 15px;
    border: 1px solid #fffef2;
    box-shadow: 0 0 0 0.2rem rgba(89, 228, 252, .30);
    float: inherit;
}

.dialog-Tutor {
    font-size: smaller;
    float: inherit;
    margin: 2px;
}

.dialog-Tutor-message {
    color: black;
    background-color: #f2eeff; 
    margin: 5px;
    padding: 4px 6px;
    border-radius: 15px;
    border: 1px solid #f8f6ff;
    box-shadow: 0 0 0 0.2rem rgba(216, 207, 255, .25);
    float: inherit;
}

::selection {
    background: #ffe0e0; /* WebKit/Blink Browsers */
}

::-moz-selection {
    background: #ffe0e0; /* Gecko Browsers */
}

.green-border-focus .form-control:focus {
    border: 1px solid #d2fcff;
    box-shadow: 0 0 0 0.2rem rgba(182, 212, 223, .25);
}

#id_document_body {
    background-color: #fff6db; /*#f3fafa */
    padding: 18px 14px;
    border: none;
    border-radius: 2px;
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
}

#task_field {
    padding: 5px 5px;
    border: 1px solid #e5e2f1; /*#f7fffd */
    border-radius: 2px;
}
#email_text {
    font-family: 'Lato', sans-serif;
    font-weight: 300;
    font-size: 22px;
    color: #333;
}

#signupForm {
    color: #777683;
}

/*Task Blue*/
.tag-Blue {
    background-color: #c7e1f3;
}
/*Task Green*/
.tag-Green {
    background-color: #b1dac2;
}
/*Task Red*/
.tag-Red {
    background-color: #f5dad6;
}
/*Task Yellow*/
.tag-Yellow {
    background-color: #f5efd2;
}

.tag-Turquoise {
    background-color: #1d9ab1; 
}
.tag-None {
    background-color: #f2f2f2
}

.progress-step-done {
    background-color: #897ac6;
    border: 5px solid #f6f5f9;
}
.progress-step-failed {
    background-color: #d84646;
    border: 5px solid #f6f5f9;
}
.progress-step-in {
    background-color: #f4d86c;
    border: 5px solid #f6f5f9;
}
.progress-step-not {
    background-color: #d1cdc7;
    border: 5px solid #f6f5f9;
}
