﻿/* || FORM VARIABLES */
/*Colors*/
/*Radio button*/
/*Fonts*/
/*Sizes*/
/*---------------------------------------------------------------------------------*/
/*--POSITIONING--*/
/* || FORM VARIABLES */
/*Colors*/
/*Radio button*/
/*Fonts*/
/*Sizes*/
/*---------------------------------------------------------------------------------*/
/*--POSITIONING--*/
@media only screen {
  .line, .context_menu .group_text_center {
    display: flex;
    white-space: nowrap;
    width: calc(100% - 30px);
    height: 20px;
    align-items: center;
    justify-content: end;
    margin-left: 35px;
    font-size: 9pt;
    font-weight: 500;
    color: #444;
  }
  .line::before, .context_menu .group_text_center::before {
    content: "";
    width: 100%;
    height: 1px;
    margin-right: 5px;
    background-image: -webkit-linear-gradient(top, #fff, lightgray, #fff);
    background-image: -moz-linear-gradient(top, #fff, lightgray, #fff);
    background-image: -ms-linear-gradient(top, #fff, lightgray, #fff);
    background-image: -o-linear-gradient(top, #fff, lightgray, #fff);
    background-image: linear-gradient(top, #fff, lightgray, #fff);
  }
  .line::after, .context_menu .group_text_center::after {
    content: "";
    width: 15px;
    height: 1px;
    margin-left: 5px;
    background-image: -webkit-linear-gradient(top, #fff, lightgray, #fff);
    background-image: -moz-linear-gradient(top, #fff, lightgray, #fff);
    background-image: -ms-linear-gradient(top, #fff, lightgray, #fff);
    background-image: -o-linear-gradient(top, #fff, lightgray, #fff);
    background-image: linear-gradient(top, #fff, lightgray, #fff);
  }
  .full_line {
    position: relative;
    background-color: lightgray;
    height: 1px;
    width: calc(100% - 10px) !important;
    margin-top: 5px;
    margin-bottom: 5px;
  }
  .full_line::after {
    content: "";
    height: auto;
  }
  .full_line::before {
    content: "";
    height: auto;
    margin-right: 5px;
  }
  /*-----------------BUTTON 30 X 30 WITH ICON INSIDE-----------------*/
  /* || FORM VARIABLES */
  /*Colors*/
  /*Radio button*/
  /*Fonts*/
  /*Sizes*/
  /*---------------------------------------------------------------------------------*/
  /*--POSITIONING--*/
  /* || FORM VARIABLES */
  /*Colors*/
  /*Radio button*/
  /*Fonts*/
  /*Sizes*/
  /*---------------------------------------------------------------------------------*/
  /*--POSITIONING--*/
  .btn, .context_menu .btn {
    position: relative;
    width: 30px;
    height: 30px;
    margin: 2px;
  }
  .btn_content, .context_menu .btn_content {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    border: 1px solid transparent;
    border-radius: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition: background-color 0.2s, border 0.2s, opacity 0.2s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .btn_content:hover {
    transition-delay: 0.2s;
    border: 1px solid #DBE5ED;
    background-color: rgba(255, 255, 255, 0.4);
  }
  .btn_content:active active {
    background-color: white;
  }
  /*-------------------------------BUTTON SELECTED--------------------------*/
  .btn_selected {
    border: 1px solid #DBE5ED !important;
    background-color: white !important;
  }
  .btn_disabled {
    opacity: 0.2;
    pointer-events: none;
  }
  /*-----------------------------------BUTTON WITH CUSTOM TEXT---------------------------------------*/
  btn_with_custom_text {
    height: 37px;
    border: 0px solid #007ee9;
    border-radius: 20px;
    background-color: #007ee9;
    cursor: pointer;
    transition: background-color 0.5s;
    color: white;
  }
  btn_with_custom_text:hover {
    background-color: #1c8ae7;
  }
  /*BUTTON WITH CUSTOM TEXT AND ICON INSIDE CONTAINER*/
  btn_text_icon {
    height: 40px;
    border-radius: 5px;
    border: 1px solid #e0e0e0;
    background-color: whitesmoke;
    width: calc(50% - 5px);
    display: flex;
    justify-content: center;
    padding: unset;
    align-items: center;
  }
  btn_text_icon:hover {
    transition-delay: 0.2s;
    border: 1px solid #DBE5ED;
    background-color: rgba(255, 255, 255, 0.4);
    color: black;
  }
  btn_container {
    display: flex;
    justify-content: space-around;
    padding: unset;
    align-items: center;
    height: 100%;
    cursor: pointer;
  }
  .context_menu {
    position: absolute;
    top: 0px;
    right: 0px;
    bottom: 0px;
    left: 0px;
  }
  .context_menu .left_side {
    position: absolute;
    top: 0px;
    right: unset;
    bottom: 0px;
    left: 0px;
    width: 30px;
    background-color: var(--color-whitesmoke);
  }
  .context_menu .right_side {
    position: absolute;
    top: 0px;
    right: unset;
    bottom: 0px;
    left: 0px;
    width: 100%;
  }
  .context_menu .group_container {
    display: block;
    justify-content: start;
    padding: unset;
    align-items: center;
  }
  .context_menu .item_container {
    display: flex;
    justify-content: start;
    padding: unset;
    align-items: center;
    height: 30px;
    z-index: 2;
    transition: background-color 0.2s;
    cursor: pointer;
  }
  .context_menu .item_container:hover {
    background-color: rgba(0, 0, 0, 0.07);
  }
  .context_menu .item_container_selected {
    background-color: rgba(203, 226, 244, 0.6) !important;
  }
  .context_menu .label_checkbox_conatainer {
    display: flex;
    justify-content: space-between;
    padding: unset;
    align-items: center;
    width: calc(100% - 30px);
    margin-left: 5px;
  }
  .context_menu .label_flag_conatainer {
    display: flex;
    justify-content: space-between;
    padding: unset;
    align-items: center;
    width: calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    color: var(--text-secondary);
  }
  .context_menu .label_flag_conatainer input[type=checkbox] {
    pointer-events: none !important;
  }
  .context_menu .label_flag_and_date_conatainer {
    display: grid;
    grid-template-columns: auto min-content min-content;
    width: calc(100% - 10px);
    margin-left: 5px;
    margin-right: 5px;
    align-items: center;
    gap: 3px;
  }
  .context_menu .label_flag_and_date_conatainer span {
    white-space: nowrap;
  }
  .context_menu .label_flag_and_date_conatainer input[type=checkbox] {
    pointer-events: none !important;
  }
  .context_menu .label_flag_and_date_conatainer input[type=date] {
    padding: 0px;
  }
  .context_menu .text_container {
    display: flex;
    justify-content: space-between;
    padding: unset;
    align-items: center;
    height: 20px;
    font-size: 9pt;
  }
  .context_menu .text_center {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
  }
  .context_menu .label_text {
    text-align: right;
    color: var(--text-primary);
  }
  .context_menu .checkbox_container {
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
  }
  .context_menu .flag_item_checkbox_container {
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    display: flex;
    pointer-events: none;
  }
  .context_menu_scrool {
    overflow-y: auto;
    /*        .group_text_center {
                width: calc(100% - 40px);
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }*/
  }
}
