﻿/*  #######################################################################################################*/
/*  -------------------------  Tutorials Background and title row				---------------------------*/
/*  #######################################################################################################*/
#tutorials {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(250,250,250,0.4);
    z-index: 1000;
    overflow:auto;
}
.tutorials-form
{
    position:absolute;
    width:900px;height:500px;left:calc(50% - 450px);top:calc(50% - 250px);
    background-color:white;
    overflow-y:auto;
    font-family:Calibri, Candara, Segoe, "Segoe UI", Optima, Arial, sans-serif;
    overflow-x:auto;
    color:rgb(30,30,30);
    border:solid 1px rgb(150,150,150);
    border-radius:20px;
}

.tutorials-top-title
{
    position:absolute;
    left:40px;top:14px;
    font-size:40px;
    font-weight:bold;
}

.close-tutorials{
    position:absolute;
    left:calc(100% - 200px);width:160px;top:20px;height:40px;
    background-color:rgb(178, 34, 34);
    border:none;color:white;
    font-size:25px;
    cursor:pointer;
    border-radius:5px;
}


.close-tutorials:hover
{
    background-color:#541010;
}

.exit-tutorials {
    position: absolute;
    left: calc(100% - 40px);
    top: 20px;
    width: 40px;
    font-size: 30px;
    color: inherit;
    cursor: pointer;
}

.exit-tutorials:hover {
    color: rgb(150,150,150)
}

@media (max-width:940px) {
    .tutorials-form {
        left: 20px;
    }
}
@media (max-height:540px) {
    .tutorials-form {
        top: 20px;
    }
}
/*@media (max-width:900px) {.tutorials-top-title{top:16px;font-size:35px;}}
@media (max-width:800px) {.tutorials-top-title{top:18px;font-size:30px;}}
@media (max-width:730px) {.tutorials-top-title{top:20px;font-size:25px;}}
@media (max-width:650px) {.tutorials-top-title{top:22px;font-size:20px;}}
@media (max-width:600px) {.tutorials-top-title{display:none;}}*/

/*  #######################################################################################################*/
/*  -------------------------  Tutorials Background and title row				---------------------------*/
/*  #######################################################################################################*/

#tutorials_main_area{
    position:absolute;
    left:40px;width:calc(100% - 80px);top:80px;height:calc(100% - 120px);
    min-width:500px;
    background-color:rgb(220,220,220);
    color:rgb(30,30,30);
    overflow-y:auto;
    border:none;
    border-radius:10px;
}

#tutorials_scrollable
{
    position:absolute;
    left:20px;width:calc(100% - 40px);top:20px;height:calc(100% - 40px);
    overflow-y:auto;
    background-color:rgb(220,220,220);
    color:rgb(30,30,30);
}

/*  #######################################################################################################*/
/*  -------------------------  Tutorial row				---------------------------*/
/*  #######################################################################################################*/
.tutorial-category-title-row {
    position: relative;
    width: 100%;
    height: 40px;
    background-color: rgb(100,100,100);
    color:white;
    font-size:20px;
    font-weight:bold;
    padding-top:6px;
    text-indent:20px;
}
.tutorial {
    position: relative;
    width: 100%;
    height: 70px;
    cursor: pointer;
    border-bottom: solid 1px white;
    border-radius: 10px;
}
.tutorial:hover
{
    background-color:rgb(150,150,150);
    color:white;
}
/*  #######################################################################################################*/
/*  -------------------------  Tutorial detail				---------------------------*/
/*  #######################################################################################################*/

.tutorial-image-holder
{
    position:absolute;
    left:20px;top:10px;height:calc(100% - 20px);width:100px;
    background-color:white;
    border:none;
    border-radius:10px;
}

.tutorial-image {
    position: absolute;
    width: 100%;
    top: 0;
    font-size: 50px;
    text-align: center;
    color: rgb(0,176,240);
}
.tutorial-title
{
    position:absolute;
    left:140px;top:10px;
    color:inherit;
    font-size:20px;font-weight:bold;
    cursor:pointer;
}
.tutorial-description
{
    position:absolute;
    left:140px;top:30px;width:calc(100% - 160px);
    font-size:16px;font-weight:normal;
    color:inherit;
    overflow:hidden;
    cursor:pointer;
}

/*@media (max-width:900px) {
    .tutorial-description
    {
        font-size:20px;
    }}
@media (max-width:800px) {
    .tutorial-description
    {
        font-size:18px;
    }}
@media (max-width:700px) {
    .tutorial-title
    {
        font-size:27px;
    }}
@media (max-width:600px) {
    .tutorial-title
    {
        font-size:25px;
    }
    .tutorial-description
    {
        font-size:18px;
    }}*/

/*  #######################################################################################################*/
/*  -------------------------  Tutorial detail				---------------------------*/
/*  #######################################################################################################*/

#video
{
    position:absolute;
    width:100%;height:100%;
    background:none;
    overflow:hidden;
}
.video-player
{
    position:absolute;
    left:10px;top:10px;width:calc(100% - 20px);height:calc(100% - 20px);
    border:none;
}
.close_video{
    position:absolute;
    left:calc(100% - 40px);top:10px;
    font-size:30px;
    color:white;
    cursor:pointer;
}