@media only screen and (max-width: 600px) {
    .div-flex-for-screen {
        display: flex;
        flex-direction: column;
    }
}

@media only screen and (min-width: 601px) {
    .div-flex-for-screen-column {
        display: flex;
        flex-direction: column;
        padding: 2%;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
        height: min-content;
    }



    .div-flex-for-screen {
        display: flex;
        flex-direction: row-reverse;
        padding: 2%;
        box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
        height: min-content;
        margin-top: 20px;
    }
}

.div-display-none {
    display: none !important;
}

.div-display-block {
    display: block !important;
}

.div-center-content{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-align-center{
    align-items: center;
}

.div-align-start{
    align-items: flex-start;
}

.div-align-end{
    align-items: flex-end;
}

.div-justify-center{
    justify-content: center;
}

.div-justify-end{
    justify-content: flex-end;
}

.div-justify-space-between{
    justify-content: space-between;
}

.div-justify-space-around{
    justify-content: space-around;
}

.div-justify-start{
    justify-content: flex-start;
}

.div-main-view {
    display: flex;
}

.div-msg-recived{
    padding-inline: 5px;
    border-radius: 25px;
    background-color: white;
}

.div-tools-bar{
    display: flex;
    flex-direction: column;
    color: white;
}

.div-flex-column{
    display: flex;
    flex-direction: column;
}

.div-flex-row{
    display: flex;
    flex-direction: row;
}

.div-grid-a-50-a{
    display: grid;
    grid-template-columns: auto 50px auto;
    gap: 1px;
    align-items: center;
}

.div-inline-flex{
    display: inline-flex;
}

.div-tool{
    display: flex;
    align-items: center;
    margin-top: 5px;
    margin-bottom: 5px;
    color: azure;
    transition: color 200ms linear, scale 100ms linear;
    transform-origin: left;
}

.div-tool:hover{
    color: goldenrod;
    scale: 1.2;
}

.div-arrow-menu {
    transition: transform 500ms ease-in-out;
}

.div-column-panel{
    flex: 1;
}

.div-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.div-content-description{
    font-size: 18px;
}

.div-list-tools{
    display: flex;
    flex-wrap: wrap;
    margin: auto;
}

.div-list-tools[hidden]{
    display: none;
}

.div-content-tools {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    margin: 8px;
    height: 250px;
    width: 250px;
    /*background-color: var(--bg-tools);*/
    /*background-color: rgb(200, 0, 50);*/
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
    transition: transform 250ms ease-in-out, box-shadow 100ms ease-in-out;
    a{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        text-decoration: none;
        color: inherit;
    }
}

.div-content-tools:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}

.div-content-tools-transparent {
    display: flex;
    flex-wrap: wrap;
    height: 250px;
    width: 250px;
    margin: 8px;
    padding: auto;
}

.div-content-tools-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    height: 120px;
    width: 120px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
    transition: transform 250ms ease-in-out, box-shadow 100ms ease-in-out;
    a{
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
        width: 100%;
        text-decoration: none;
        color: inherit;
    }
}

.div-content-tools-mini:hover{
    transform: scale(1.1);
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}

.div-input-flex-center-icon {
    display: flex;
    justify-content: center;
    align-items: center;
  }

.div-form-content {
    width: 280px;
    height: 28px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
    /*background-color: var(--bg-tools);*/
    border-radius: 10px;
    transition: transform 150ms ease-in-out, box-shadow 150ms ease-in-out, font-size 150ms ease-in-out;
    input[type="checkbox"]{
        width:auto;
    }
}

.div-form-content:hover{
    transform: scale(1.05);
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}

.div-form-multi-input {
    width: 350px;
    height: auto;
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
    /*background-color: var(--bg-tools);*/
    border-radius: 10px;
    transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
    input[type="checkbox"]{
        width:auto;
    }
}

.div-form-multi-input:hover{
    transform: scale(1.02);
    box-shadow: 0px 0px 16px rgba(0, 0, 0, 0.5);
}

.div-line-one-input{
    width: 100%;
    height: 28px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin: 8px;
}

.div-line-one-select{
    width: 280px;
    height: 28px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin: 8px;
    select{
        width:130px;
    }
}

.div-button-content{
    min-width: auto;
    height: 30px;
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
    background-color: white;
    border-radius: 10px;
    padding: 10px;
    padding-left: 6px;
    transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
    input{
        width:130px;
    }
    input[type="checkbox"]{
        width:auto;
    }
}

.div-display-flex-wrap{
    display: flex;
    flex-wrap: wrap;
}

.div-display-a-j-center{
    align-items: center;
    justify-content: center;
}

.div-display-a-j-start{
    align-items: flex-start;
    justify-content: center;
}

.div-display-a-j-end{
    align-items: flex-end;
    justify-content: center;
}

.div-line-siple{
    border-bottom: 1px solid rgb(200, 0, 50);
}

.div-line2-color-app{
    margin: 16px;
    min-width: 100%;
    border-top: 1px solid rgb(200, 0, 50);
}

.div-min-width-100{
    min-width: 100%;
}

.div-form-multi-input-width-auto {
    width: auto;
    height: auto;
    display: flex;
    justify-content:space-between;
    align-items: center;
    margin: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
    /*background-color: var(--bg-tools);*/
    /*background-color: rgb(200, 0, 50);*/
    border-radius: 10px;
}

.div-2-radio-t-f {
    justify-items: right;
    input{
        width: 18px
    }
}

.div-form-multi-test{
    width: auto;
    height: auto;
    display: flex;
    align-items:flex-start;
    margin: 8px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
    background-color: var(--bg-tools);
    border-radius: 10px;
    transition: transform 200ms ease-in-out, box-shadow 200ms ease-in-out;
}

.div-line-test{
    display: flex;
    flex-direction: row;
    width:100%;
    justify-content:space-between;
}

.div-max-width-70pc{
    max-width: 70%;
}

.div-max-width-700{
    max-width: 700px;
}

.div-max-width-380{
    max-width: 380px;
}

.div-min-width-480{
    min-width: 480px;
}

.div-gap-20 {
    gap: 20px;
}

.div-gap-40 {
    gap: 40px;
}

.div-b-r-solid-1 {
    border-right: 1px solid;
}

.div-b-l-solid-1 {
    border-left: 1px solid;
}

.div-b-b-solid-1 {
    border-bottom: 1px solid;
}

.div-b-t-solid-1 {
    border-top: 1px solid;
}

.div-space-between {
    justify-content: space-between;
}

.div-width-100pc {
    width: 100%;
}

.div-width-content {
    width:min-content;
}

.div-height-content {
    height:min-content;
}

.div-height-100pc {
    height: 100%;
}

.div-flex-1 {
    flex: 1;
}

.div-display-flex {
    display: flex;
}

.div-rounded {
    border-radius: 50%;
    width: 50px;
    height: 50px;
    border: solid 1px goldenrod;
    display: flex;
    justify-content: center;
    align-items: center;
}

.div-chart {
    height: 90%;
    width: 90%;
    display: inline-block;
    border-radius: 10px;
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
    background-color: var(--bg-tools);
}           

.div-chart-container {
    height: 600px;
    width: 80%;
    position: relative;
}

.div-b-radius-10 {
    border-radius: 10px;

}

:root {
  --shadow-color: rgb(0, 136, 247);
}

.div-box-shadow-generic {
    box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.7);
}

.div-box-shadow-10 {
  box-shadow: 0 0 10px var(--shadow-color);
  animation: shadowColor 5s infinite alternate;
}

@keyframes shadowColor {
  0% {
    box-shadow: 0 0 10px var(--shadow-color);
  }
  50% {
    box-shadow: 0 0 25px var(--shadow-color);
  }
  100% {
    box-shadow: 0 0 10px var(--shadow-color);
  }
}
