a {
    cursor: pointer;
}

.sidebar-logo-lp {
    background-image: url(./img/sidebar-logo.png);
    background-size: 260px 190px;
    width: 260px;
    height: 194px;
    margin-top: 30px;
    margin-bottom: 30px;
    margin-left: auto;
    margin-right: auto;
    transition: all .3s;
}

.sidebar-logo-lp:hover {
    background-size: 270px 200px;
    transform: translateX(-5px) translateY(-5px);
    width: 270px;
}

.guiadodev a {
    font-weight: 900;
    text-decoration: none;
    color: white;
    transition: all .3s;
    padding: 5px 0px 5px 35px;
}

.guiadodev a:hover {
    color: black;
    background-color: white;
}

a.deploy-toggle-1 {
    text-transform: unset;
    font-weight: 900;
    color: #ffffff;
    font-size: 14pt;
    background: linear-gradient(90deg, #7c90c9 -20%, #49479D 60%);
    height: 150px;
    padding-top: 55px;
    transition: all .3s;
}

a.deploy-toggle-1:hover {
    background: linear-gradient(90deg, #7c91c9e0 -20%, #48479dcc 60%);
    height: 200px;
    padding-top: 80px;
}

a.deploy-toggle-1 span {
    font-weight: 300;
    font-size: 11pt;
}

a.deploy-toggle-2 {
    text-transform: unset;
    font-weight: 900;
    color: #ffffff;
    font-size: 14pt;
    background: linear-gradient(90deg, #70ce3a -20%, #7DB61C 60%);
    height: 150px;
    padding-top: 55px;
    transition: all .3s;
}

a.deploy-toggle-2:hover {
    background: linear-gradient(90deg, #70ce3adc -20%, #7eb61cbe 60%);
    height: 200px;
    padding-top: 80px;
}

a.deploy-toggle-2 span {
    font-weight: 300;
    font-size: 11pt;
}

div.content.section-comps {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-content: center;
    background-color: #003641;
    height: 150px;
    width: 100%;
    margin: 0 auto 0 auto;
    transition: all .3s;
}

div.content.section-comps:hover {
    background-color: #003641bb;
    height: 200px;
}

div.content.section-tutos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    background-color: #003641;
    height: 150px;
    width: 100%;
    margin: 0 auto 0 auto;
    transition: all .3s;
    padding-left: 50px;
}

div.content.section-tutos:hover {
    background-color: #003641bb;
    height: 200px;
}

div.section-tutos a {
    font-size: 14pt;
    font-weight: 900;
    color: #fff;
}

div.section-tutos a span {
    font-weight: 300;
    font-size: 11pt;
}

.timeline-text img {
    margin: 0 auto 0 0 !important;
    width: 100%;
    max-width: 900px;
    transition: all .3s;
    transform: scale(.97);
}

.timeline-text img:hover {
    transform: scale(1);
    box-shadow: 0 0 20px 2px #00000036;
}

.tap-dismiss-notification {
    padding: 0 15px 0 15px;
    transition: all .3s;
    transform: scale(.97);
}

.timeline-text h3 span {
    font-weight: 600;
    font-size: 14pt;
}

#text-html, #text-css, #text-js{
    margin: 10px;
    width: 100%;
    height: 300px;
    background-color: #eeeeee;
    overflow-y: scroll;
}

.copy-code {
    background: #49479D;
    color: #fff;
    border: 1px solid #49479D;
    transition: all .3s;
    position: absolute;
    right: 10px;
    z-index: 200;
}
.copy-code:hover {
    background: transparent;
    color: #49479D;
    font-weight: 700;
}
.copy-code.success::before {
    content: 'Código copiado com sucesso!'!important;
    padding: 0 10px;
}

/* -- Modal Tutorial Componentes -- */
#tuto-modal {
    width: 100%;
    height: 100vh;
    position: fixed;
    z-index: 9998;
    top: 0px;
    left: 0px;
    display: flex;
    flex-direction: column;
    align-items: center;
    visibility: hidden;
    opacity: 0;
    transform: scale(0);
    transition: all .4s;
}
#tuto-modal.show {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
}
.modal-close-overlay {
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9999;
    cursor: pointer;
}
.modal-window {
    width: 92%;
    max-width: 800px;
    box-shadow: 0px 0px 60px 1px #00000078;
    background: #fff;
    z-index: 19999;
    height: 80vh;
    max-height: 800px;
    position: absolute;
    top: 80px;
    border-radius: 5px;
}
.window-header {
    width: 100%;
    height: 30px;
    background-image: linear-gradient(to right, #003641 -10%, #00AE9D 110%);
    display: flex;
    align-items: center;
    padding: 0 10px;
}
.close-modal-btn {
    background: rgb(255, 51, 0);
    width: 12px; height: 12px; border-radius: 10px;
}