html, body {
  margin: 0;
  font-size: 14px;
  min-height: 100%;
  height: 100%;
  /* overflow-x: hidden; */
  /* width: 100%; */
}

body.popup-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
}

body, input, textarea, button, .ui-widget {
  font-family: 'Poppins', 'Assistant','Sans-serif', 'Arial';
}

@font-face {
  font-family: "SimplerPro_V3";
  src: url("/dist/partner/fonts/SimplerPro_V3-Regular.ttf") format("truetype");
}

/* HIDE DEFAULT STYLES */
:focus {
  outline: none;
}

a {
  color: inherit;
  text-decoration: none;
}

a.external.center {
  display: block;
  width: 100%;
  margin: 15px 0;
}

a.click {
  color: blue;
}

ul {
  list-style-type: none;
}

ol {
  list-style-position: inside;
  padding: 0;
}

ol li {
  line-height: 28px;
}

/* SIZES */
h1, h2, h3, h4, .menu-list {
  /* removes default margin */
  margin: 0; 
  padding: 0;
  flex-grow: 1;
}

h1 {
  font-size: 22px;
}

h2, .icon {
  font-size: 19px;
}

h3 {
  font-size: 16px;
  font-weight: 400;
}

h4, .big-btn, .medium-btn {
  font-size: 16px;
}

.setting-title, .menu-list h3, h4, .weekdays {
  font-weight: 500;
}

.tab p, .section p {
  flex-grow: 2;
}

.align p.shrink {
  margin: 7px 0; /* default is margin: 14px 0; but it adds margin to the flex container (align) */
}

button>a {
  display: block;
}

/* CUT OFF LONG TEXT */
.clip-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

.clip-text.no-wrap {
  white-space: nowrap;
}

/* COLORS */
.side-menu-icons svg.side-menu-icon {
    fill: white;
}

.wrapper-footer,
.menu-wrapper,
.pop_up,
.avatar:not(.search) {
  background-color: white;
}

.wrapper,
.wrapper .transparent-input,
.wrapper .transparent-input::placeholder {
  color: white;
}

.shadow,
.ui-widget.ui-widget-content {
  box-shadow: 0 2px 4px 2px rgba(0, 0, 0, 0.1);
}

button.hide_add_app {
  display: none;
}

/* ALIGNING */
.single_page_container {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.expand {
    min-height: calc(100vh - 280px);
}

.single_page_container.fit {
  flex: 1;
}

.single_page_container.fit.no_permission {
  min-height: calc(100vh - 385px);
}

.cursor_pointer {
  cursor: pointer;
}

.center-body.radio_list.horizontal_flex {
  display: flex;
  margin : 10px 0 -15px 0;
}

.checkmark.vertical_align {
  top: 3px;
}

.radio_container.margin_left,
.optional_explanation {
  margin-left: 10px;
}

.no_flex_grow {
  flex-grow: 0;
}

#explanation_optional {
  border       :none;
  border-radius: 0;
  border-bottom: 1px solid; 
  margin-top   : 5px;
  width        : 85%;
}

.choose_time_message {
  color     : red;
  text-align: center;
  height    : 10px;
  margin-top: 5px;
}

.center-body.single_page_container.fit.no_permission.request_off {
  min-height: calc(100vh - 320px);
}

.send_cancel_buttons_wrapper {
  display: flex;
  margin : 15px auto 0 auto;
}

.error_messages_wrapper {
  height : 16px;
}

.choose_time_message {
  display: none;
}

.protection_status_on.hidden,
.protection_status_off.hidden,
#turn_off_li.hidden,
#turn_on_li.hidden,
.wrapper_img.hidden {
  display: none;
}

.grid, .apps-table-row {
  display: flex;
  justify-content: space-between;
}

.grid.end {
  justify-content: flex-end;
}

.align {
  display: flex;
  align-items: center;
}

.delete_account {
  justify-content: center;
}

.center {
  text-align: center;
}

.baseline {
    align-self: center;
}

.absolute_center,
.switch .slider {
    position: absolute;
    left: 0;
    right: 0;
}

.zero_state {
  display: block;
  margin: 0 auto;
  width: 40%;
}

.horizontal_scrollbar {
  scroll-snap-type: x mandatory;
  -webkit-scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scroll-snap-stop: always;
  overflow-x: scroll;
  scrollbar-width: none; 
  -ms-overflow-style: none;
}

.scroll_item {
  scroll-snap-align: none center;
}

/* AUTOCOMPLETE */
.ui-widget.ui-widget-content {
  width: 50px;
  border-radius: 5px;
  border: none;
}

/* not sure if needed:  .ui-menu-item .ui-menu-item-wrapper.ui-state-active for the selected item in autocomplete */
.ui-autocomplete {
  max-height: 150px;
  overflow-y: auto;
  overflow-x: hidden;
}
/************************ RIPPLE EFFECT ON CLICK *********************/

#ripple {
  background-color: aliceblue;
  border-radius: 50%;
  position: absolute;
  height: 50px;
  width: 50px;
  transform: scale(0, 0);
  z-index: 2;
}

.ripple-effect {
  -moz-animation: ripple 0.8s ease-out;
  -webkit-animation: ripple 0.8s ease-out;
  animation: ripple 0.8s ease-out;
}

@keyframes ripple {
  50% {
    transform: scale(1.5, 1.5);
    opacity: 0;
  }

  99% {
    transform: scale(0.001, 0.001);
    opacity: 0;
  }

  100% {
    transform: scale(0, 0);
    opacity: 1;
  }
}

/************************ HEADER *********************/

.wrapper {
  background: var(--maincolor);
  height: 280px;
  min-height: 280px;
  /* overflow-y: hidden; */
}

.no-devices-header {
    width: 100%;
}

.wrapper_img {
    margin: 0 auto;
    display: block;
    width: 250px;
    height: 250px;
    /* padding: 28px; */
    direction: ltr;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.wrapper_img.smaller {
  width: 200px;
  height: 200px;
}

.another_img {
  display: flex;
  margin : 20px auto;
  width  : 80%;
}

.side-menu-icons {
  height: 30px;
  position: absolute;
  z-index: 2;
}

.tabs-menu {
  height: 50px;
  margin: 0 24px 7px 24px;
}

.tab_icon {
  padding: 5.5px;
  width: 28px;
  opacity: 0.5;
  height: 35px;
  transition: border-bottom 0.4s, opacity 0.4s;
}

.new-label {
  position: absolute;
  top: 0;
  inset-inline-end: 0;
  height: 21px;
  transform: translate(-50%, -50%);
  /* direction: rtl;  */
  right: auto;
}

.new-label.hidden {
  display: none;
}

.tab-link {
  position: relative;
  display: inline-block;
}

.tab-link.selected .tab_icon {
  opacity: 1;
  border-bottom: 3px solid white;    
  border-radius: 3px;
}

.tab-link.hidden {
  display: none;
}

.wrapper-footer {
  border-radius: 32.5px 32.5px 0 0;
  height: 35px;
  margin-top: -35px;
  padding-top: 35px;
}

.wrapper .devices_search_container {
  padding: 7px;
}

.wrapper .devices_search_container .autocomplete {
  position: relative;
}

.notification-bell-wrapper {
  position: absolute;
  top: 10px;
  z-index: 999;
}

html[dir="ltr"] .notification-bell-wrapper {
  right: 15px;
}

html[dir="rtl"] .notification-bell-wrapper {
  left: 15px;
}

#rw-component-NotificationBell {
  display: inline-block;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
/************************ DEVICES SLIDER *********************/

.devices {
  -webkit-overflow-scrolling: touch;
  overflow-y: hidden;
  position: relative;
  height: 100px;
  padding-top: 30px;
}

.devices.carousel-container {
  overflow: hidden;
  height: 75px;
}

.devices-slider {
  display: inline-flex;
  margin-top: 0;
  padding: 0;
}

.devices-slider-item {
  width: 63px;
  height: 112px;
  display: grid;
  overflow: hidden;
  line-height: 112px;
  text-align: center;
}

.devices-slider-item:not(.selected) .avatar {
  margin-top: 21px;
}

.device-name {
  overflow: hidden;
  font-size: 12.5px;
  padding: 0 7px 0 7px;
  font-weight: 600;
  white-space: nowrap;
  line-height: normal;
}

.device-name.gray {
  color: #555555;
}

.devices-slider-item.selected .device-name {
    line-height: 1;
    padding: 0;
    margin: 11px 0;
    white-space: pre-wrap;
    /* word-break: break-word; */
    overflow-wrap: anywhere;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.carousel-container + .device-name,
.avatar {
  margin: 0 auto;
}

.devices-slider-item.selected {
    width: 77px;
}

.devices-slider-item.selected img {
  width: 63px;
  height: 63px;
}

.wrapper .transparent-input-container {
  padding: 42px;
  position: relative;
}

.transparent-input-container>img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: -moz-inline-grid;
}

.transparent-input-container .clear-icon {
  position: absolute;
  padding: 7px;
}

.avatar {
  height: 42px;
  width: 42px;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}

.avatar:not(.search) {
  box-shadow: 0 3px 4px 0 rgba(0, 0, 0, 0.5);
  box-sizing: border-box;
  padding: 7px;
}

.devices-carousel-item .avatar {
  height: 63px;
  width: 63px;
}

.devices-carousel {
  position: relative;
  transform-style: preserve-3d;
  padding: 8px;
}

.devices-carousel-item {
  transition: transform 0.4s ease;
  width: 63px;
  height: 63px;
  margin: auto;
  /* backface-visibility: hidden; */
}

/************************ SEARCH *********************/

.search-box {
  position: relative;
}

.search-box input {
  margin-top: 21px;
  width: 100%;
  height: 30px;
  border: none;
  border-radius: 25.5px;
  background-color: rgb(227, 229, 254);
  opacity: 0.5;
  box-sizing: border-box;
}

#tab-section .search-icon {
  position: absolute;
  top: 28px;
  opacity: 0.4;
}

#tab-section div#categories-container .sorting {
  display: none;
}

.transparent-input {
  border: none;
  font-size: 14px;
  border-bottom: 1px solid rgba(151, 151, 151, 0.5);
  padding-bottom: 5px;
  width: 100%;
}

.wrapper .transparent-input::placeholder {
  opacity: 0.5;
}

.wrapper .transparent-input {
  background: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.5);
}

.pop_up .transparent-input {
  padding: 7px 0;
}

.single_page_container .transparent-input {
  width: 80%;
  display: block;
  text-align: start;
  margin: auto auto 0 auto;
}

.single_page_container .input-container {
  position: relative;
  bottom: 0;
  min-height: 20px;
  margin: 10px 0;
}

.red_error {
  text-align:center;
  color: red;
  font-size: 14px;
}

.bottom_device_details {
  width: 100%;
  display: flex;
  justify-content: space-between;
}

.center-body .bottom_device_details {
  width: calc(100% + 50px);
  margin-left: -25px;
  margin-right: -25px;
}
  
.bottom_device_details .detail {
  opacity: 0.75;
  margin: 10px;
  font-size: 12px;
}

#uninstall_password_page a.white-btn.back_btn {
  color        : #686464;
  text-align   : center;
  font-weight  : 500;
  margin-bottom: 12px;
}

/* 
.single_page_container .transparent-input-container {
  display: block;
  margin: auto;
  width: 80%;
} */

/************************ SWITCH *********************/

.switch {
  position: relative;
  display: inline-block;
  width: 36px;
  height: 22px;
}

.switch.disabled {
  opacity: 25%;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.switch .slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #ccc;
  border-radius: 50px;
  -moz-transition: 0.4s;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
}

.switch .slider:after {
    content: "";
    position: absolute;
    bottom: 2px;
    height: 18px;
    width: 18px;
    background-color: white;
    border-radius: 50%;
    -webkit-transition: .4s;
    transition: .4s;
}

.switch.checked >.blue {
  background-color: var(--settingSwitchColor);
}

.switch.checked > .green {
  background-color: var(--protectionSwitchColor);
}

/************************ SWITCH IN HEADER *********************/

.protection {
  justify-content: center;
  min-height: 60px;
  max-height: 20vh;
  /* display: grid;
  grid-template-columns: auto 40% 30%;
  align-items: center; */
}

.protection p {
  letter-spacing: 2px;
  font-size: 16.5px;
}

.protection.until p, .protection.temp p {
    letter-spacing: 0;
}

.protection button {
    margin: 0;
    min-width: 84px;
}

.wrapper_details_item {
  display: flex;
  flex: 1;
  justify-content: center;
}

.wrapper_details_item.hidden {
  display: none;
}

.wrapper_details_item.gray {
  color:#555555;
  font-weight: bold;
}

.protection_level-time {
  border: 4px solid #f1f2fe;
  border-radius: 25px;
  background-color: #f1f2fe;
  /* width: 50%; */
}

.temp_level {
  display: none;
}

.protection_level-time .temp_level {
  display: block;
  margin: 0 5px;
  color: #6a6a6a;
  min-width: max-content;
  text-align: center;
  font-size: 12px;
  line-height: 2;
}

.wrapper .protection_level-time {
  border: 4px solid #e3e5fe;
  background-color: #e3e5fe;
}

/************************ BUTTONS *********************/

a.tab-header-button {
  line-height: 35px;
}

button:disabled {
  opacity: 25%;
}

button.finish {
    display: none;
}

.select-btn select {
  appearance: none;
  background-color: transparent;
  color: white;
  border: none;
  text-align: center;
  font-family: inherit;
  text-align-last:center;
}

.basic-btn {
  background   : var(--btncolor);
  min-width    : 70px;
  color        : white;
  border-radius: 50px;
  line-height  : 25px;
  border       : none;
  font-weight  : 500;
  text-align   : center;
}

.link-btn {
  margin-inline-start: 0;
  padding-inline-start: 0;
  background   : transparent;
  min-width    : 70px;
  color        : #005af2;
  line-height  : 25px;
  border       : none;
  font-weight  : 500;
  font-size: 16px;
  text-decoration: underline;
}

.single_page_container .basic-btn {
    background: var(--insatllbtncolor);
    margin-top: auto;
}

.tab-header-button {
  flex-grow  : 1;
  margin     : 14px 7px;
  line-height: 35px;
  width      : 63px;
  text-align : center;
  font-weight: 500;
}

.protection_level-btn {
  border-radius: 50px;
  line-height  : 25px;
  border       : none;
  color        : white;
  font-weight  : 500;
}

.protection_level-btn,
.weekday-btn,
.select-btn {
  min-width: 95px;
}

.tab section button {
  position: relative;
}

.big-btn,
.medium-btn {
  display: block;
  margin: 10.5px auto 14px auto;
}

.big-btn {
  min-width: 224px;
  line-height: 49px;
}

.medium-btn {
  width: 126px;
  line-height: 42px;
}

.small-btn {
  width: 95px;
  line-height: 32px;
}

.medium-btn.fixed_width {
  width: 150px;
}

[data-protection-level="0"] { background-color: #979797; }

[data-protection-level="1"] { background-color: #0411a1; }

[data-protection-level="2"] { background-color: #04a17d; }

[data-protection-level="3"] { background-color: #f5c84e; }

[data-protection-level="4"] { background-color: #f37047; }

[data-protection-level="5"] { background-color: #933da9; }

[data-protection-level="6"] { background-color: #d42a2a; }

[data-protection-level="opened_without_network"] { background-color: brown}

[data-protection-level="closed_with_network"] { background-color: pink}


.white-btn {
  color        : rgba(0, 0, 0, 0.5);
  background   : none;
  border-radius: 50px;
  line-height  : 25px;
  border       : none;
  font-weight  : 500;
  text-align   : center;
}

.big-btn.white-btn,
#no_permission_page .big-btn + .big-btn {
    color: #000;
    font-weight: bold;
    font-size: 14px;
    line-height: 30px;
    width: 100%;
    background: none;
}

#no_permission_page .big-btn_blue {
  display: block;
    margin: 10.5px auto 14px auto;
    min-width: 224px;
    line-height: 49px;
    font-size: 16px;
}

.send_request {
  line-height : 6vh;
  min-width   : 19vh;
  font-size   : 14px;
  font-weight : bold;
}

.cancel_request {
  color         : #0832d7;
  box-shadow    : 0 0 0 2px #0832d7 inset;
  background    : white!important;
  line-height   : 6vh;
  min-width     : 19vh;
  font-size     : 14px;
  font-weight   : bold;
}


div#no_devices_container a.big-btn {
  max-width: 230px;
}

.time-apply-btn {
  display: block;
  margin: 7px 0;
  min-width: 80%;
}

.floating-buttons {
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0), 35%, rgb(255, 255, 255, 1));
}

.floating-buttons.focused-input {
  display: none;
}

.floating-buttons.no-float {
  position: relative;
}

p.under_button {
  margin: -14px auto 42px auto;
}

span.under_button {
  margin: -5px auto 10px auto;
  font-size: 13px;
  font-weight: bold;
  display: block;
}

span.under_button.longer {
  width: 90%;
}

/********************* TAB ***************************/

.loader {
  border-width: 25px solid white;
  height: 100%;
  background: url(../asset/loader.gif);
}

.single_page_container .scroll_info {
  overflow: scroll;
  max-height: calc(100vh - 400px);
}

#tab-section {
  padding: 25px 21px 0 21px;
  /* overflow-y: scroll; */
}

#tab-section .dont_exist-container {
    padding: 20% 0 25% 0;
}

.section {
  border-radius: 15px;
  background-color: rgb(241, 242, 255);
  padding: 14px;
  margin: 14px auto;
}

.section.bg-alert {
  background-color: #f8d7da;
}

.single_page_container section p {
    text-indent: 20px;
    margin: 0.5em 0;
}

.single_page_container .section {
  margin: 5px -15px;
}

.tooltip {
  height: 14px;
  width: 14px;
}

.app-tooltip {
  position: absolute;
  bottom: 0;
}

.sorting {
  padding: 7px;
}

h3.setting-title {
  padding: 0 7px;
}

/************************ BODY *********************/

.list-item {
  margin-bottom: 20px;
  display: flex;
}

.list-number {
  background: var(--numbercolor);
  width: 21px;
  height: 21px;
  min-width: 21px;
  line-height: 1.5;
  color: white;
  border-radius: 50%;
  text-align: center;
  position: relative;
  top: 3px;
}

#background_install .list-item h3 {
    font-size: 14px;
    line-height: 30px;
}

.list-check {
    position: relative;
    top: 3px;
    color: #0cb6a6;
    display: none;
}

.list-item img.loading {
    width: 30px;
    height: 30px;
    margin-top: -3px;
}

/************************ SIDE MENUS *********************/

.side-menu-icon {
  position: absolute;
  width: 21px;
  height: 18px;
  padding: 21px;
  padding-top: 28px;
}

.menu-relative-container {
  position: relative;
  height: 100%;
}

.menu-bottom {
  opacity: 0.5;
  width: 90%;
  position: absolute;
  bottom: 14px;
}

.menu-wrapper {
  height: calc(100% - 28px);  /* 28px is the padding on top */
  z-index: 2;
  width: 65%;
  box-shadow: 10px 2px 35px 0 rgba(0, 0, 0, 0.4);
  display: none;
  flex-direction: column;
  justify-content: space-around;
  position: fixed;
  overflow: scroll;
}

aside.side-menu h1 {
  width: calc(100% - 28px);
  font-size: 21px;
  font-weight: 700;
  text-align: start;
}

hr {
  width: 30%;
  height: 3px;
  background: var(--seperator);
  border: none;
}

aside hr {
  margin: 21px 0;
}

.grid.icon_list {
  width: 80%;
}

.menu-header {
  position: relative;
}

.menu-list li {
  padding: 10px 0;
}

.menu-list li .sub-list-btn {
  font-size: 28px;
  line-height: 0.5;
}

.close-popup-btn {
  vertical-align: middle;
  position: absolute;
  width: 9px;
  top: 20px;
  font-weight: bold;
}

/************************ POPUP *********************/
.popup-background {
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
}

.popup-background.dark {
  background-color: rgba(34, 34, 34, 0.5);
  z-index: 2;
}

.pop_up {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 2;
  border-radius: 25px 25px 0 0;
  -moz-box-shadow: 0 5px 8px 10px rgba(151, 151, 151, 0.39);
  -webkit-box-shadow: 0 5px 8px 10px rgba(151, 151, 151, 0.39);
  box-shadow: 0 5px 8px 10px rgba(151, 151, 151, 0.39);
  display: none;
}

button.autocomplete {
  margin: 56px auto;
}

.pop_up h2 {
  font-weight: 700;
  padding: 0 40px;
  margin: 17px auto;
  word-break: break-all;
}

.center-body {
  margin: 0 25px;
}
.center-body.include-float-bottom-btn {
  padding-bottom: 120px;
}
.center-body.include-float-bottom-btn.two-btns {
  padding-bottom: 200px;
}

.pop_up .bottom-margin {
  margin-bottom: 42px;
}

.overflowing_container {
  padding: 0 21px;
  overflow-y: scroll;
  max-height: 75vh;
}

/************************ POPUP - RADIO *********************/
.radio_list {
  padding-bottom: 14px;
  display: block;
}

.radio_container {
  display: block;
  position: relative;
  margin-bottom: 12px;
}

.radio_container .transparent-input {
  padding: 0;
  margin: 7px 0;
  width: 100%;
}

.radio_container .transparent-input ~ .checkmark {
  margin: 3.5px 0;
}

.checkmark {
  position: absolute;
  top: 4px;
  height: 14px;
  width: 14px;
  background-color: white;
  border: 1px solid black;
  border-radius: 50%;
}
  
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
  background-color: var(--radiocolor);
}
  
.radio_container .checkmark:after {
  top: 2px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.radio_container input:checked ~ .checkmark:after {
  display: block;
}

#app_redirect_page .radio_container p {
    margin: 0;
}

/************************ POPUP - PROTECTION LEVELS *********************/
.protection_levels_list .protection_level {
  display: block;
  width: 182px;
  height: 224px;
  border-radius: 11px;
  box-shadow: 0 2px 10px 0 rgba(0, 0, 0, 0.18);
  padding: 28px 21px 35px 21px;
  margin: 21px;
}

.pop_up .level-mark {
  height: 15.5px;
  width: 15.5px;
  border-radius: 50%;
  display: inline-block;
  vertical-align: sub;
}

.protection_level-card.custom .level-mark {
  height: 16px;
  width: 16px;
  border: 1px solid #979797;
  background-color: white;
}

.protection_level-card svg {
  margin: 28px 14px;
}

/************************ POPUP - TIMES *********************/
.buttons_list {
  flex-wrap: wrap;
  margin: 14px 0;
  justify-content: space-around;
}

.buttons_list > button {
  margin: 4px;
}

.buttons_list .protection_level-btn{
  min-width: 90px;
}

.time-used-title {
  height: 35px;
  font-size: 16px;
  font-weight: bold;
}

.time-used-title :first-child, .progress-bar {
  flex-grow: 1;
}

.progress-bar {
  width: 70%;
  background: #ccc;;
  border-radius: 4.5px;
  height: 8px;
  margin: 8px 0;
}

.progress-bar .progress {
  background: var(--svgcolor2);
  border-radius: 4.5px;
  height: 8px;
}

.time-used-label {
  display: inline-block;
  width: 25%;
  font-size: 13px;
}
/************************ DOTS NAVIGATION  *********************/

.dots-nav-container {
  position: relative;
}

.dots-nav {
  bottom: 7px;
}

.dots-nav label {
  display: inline-block;
  margin: 4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  transition: background-color 0.25s;
  background-color: #aca9a9;
}

.dots-nav label.active {
  background-color: #817c7c;
}

/************************ SCREEN TIME *********************/
.screen_time_table {
  width: calc(100% + 0.75em)
}

.screen_time_table .select-btn select {
  width: 60px;
}

.is_screen_time_limit_off,
.is_pauses_schedule_off {
  opacity: 0.4;
  pointer-events: none;
}

/************************ PAUSES SCHEDULE *********************/
.weekdays > .selected {
  border-bottom: 3.5px solid black;
  padding-bottom: 1.5px;
}

.weekdays > p {
  flex-grow: initial;
}

.dots-edit {
  text-align: end;
  line-height: 0;
}

/************************ CONTENT MANAGEMENT *********************/
.apps-table {
  flex-direction: column;
}

.apps-table-row {
  align-items: center;
  padding: 7px 0;
}

.apps-table-row p {
  width: 39%;
  font-weight: 600;
}

.app-icon-container {
  vertical-align: middle;
  position: relative;
  display: flex;
}

.app-icon-container>.app-icon {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  border: none;
}

.category-icon {
  height: 35px;
  width: 35px;
  border-radius: 50%;
  background-color: var(--categorycolor);
  line-height: 35px;
  text-align: center;
  flex-shrink: 0;
}

.category-icon:after {
  color: white;
  content: "";
  font-size: 21px;
}

.category-icon.closed:after {
  content: "+";
}

.category-icon.opened:after {
  content: "-";
}

.apps-table-remove-btn {
  color: rgb(192, 195, 230);
  font-size: 17px;
  padding: 7px;
}

.open-container-slider {
  position: relative;
  margin: 0 calc(-50vw + 50%);   /* make wider than parent element */
  width: 100vw; 
  z-index: 2;
}

.open-container {
  background-color: var(--containercolor);
}

.open-container.details {
  display: flex;
}

.open-container .app-details {
  display: grid;
  grid-template-columns: 50% 50%;
}

.open-container.details>.app_details_card {
  min-width: calc(100vw - 56px);
  line-height: 2;
  padding: 28px;
  margin: 14px 0;
}

.app_details_card.description input[type="checkbox"]:checked ~ p>span,
.app_details_card.description input[type="checkbox"]:checked ~ p>label.less {
  display: block;
}

.app_details_card.description input[type="checkbox"]:checked ~ p>label.more {
  display: none;
}

label.more, label.less {
  padding: 14px;
}

.autocomplete-icon {
  height: 14px;
}

/************************ HIDE *********************/

#actions_pages [data-action], #installation_pages {
  display: none;
}

input[type="radio"], input[type="checkbox"] {
  display: none;
}

span[data-component="EmbeddedComponent"] input[type="radio"],
span[data-component="EmbeddedComponent"] input[type="checkbox"] {
  display: unset; 
}

input[type="checkbox"]#confirm_user_agreement_checkbox,#confirm_checkbox_nativ_form {
	top: 4px;
  min-width:19px;
	height: 19px;
	width: 19px;
	background-color: white;
	border: 1px solid black;
	display: inline-flex;
	vertical-align: middle;
    margin-left: 4px;
}

.invisible {
  visibility: hidden;
}

input[type="time"] {
  opacity: 0;
  width: 0;
  position: absolute;
}

.horizontal_scrollbar::-webkit-scrollbar {
  width: 0;
  height: 0;
}

input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration {
  -webkit-appearance:none;
}

/** or's css */
.gray_design_select{
  background-color: rgba(127, 127, 127, 0.15);
}
.margin_bottom_15{
  margin-bottom: 15px;
}
.margin_25{
  margin:25px 0;
}

  .font_weight_600{
    font-weight: 600;
  }
  .in_line_block{
    display: inline-block;
  }
  #choose_site_or_page_div{
    margin: 20px;
    display: flex;
    justify-content: space-evenly;
  }
  .gray_button{
    background: gray;
  }
  #displayed_url{
    background: transparent;
    color:black;
  }
  #need_support{
    color:blue;
  }
  #request_sent_div{
    display: none;
  }

/* media queries */
@media (max-height: 690px) {
    .weekdays > p {
        margin: 0;
    }

    span.uninstall_link_with_timeusage {
      display   : inline-block!important;
      position  : relative!important;
    }
}

@media (max-height: 540px) {
  span.uninstall_link_not_timeusage {
    display   : inline-block!important;
    position  : relative!important;
  }
}

@media (max-width: 360px) {
  .screen_time_table .select-btn select {
    width: 40px;
  }
}

@media (max-height: 640px) {
    .menu-list li {
        padding: 7px 0;
    }
}

@media (max-height: 600px) {
    .menu-list li {
        padding: 6px 0;
    }

    /* .wrapper_img {
        height: 180px;
        width: 180px;
    } */

    .wrapper {
        min-height: 210px;
    }

    .expand {
        min-height: calc(100vh - 210px);
    }

    .single_page_container .scroll_info {
      max-height: calc(100vh - 350px);
    }

    h3 {
        font-size: 14px;
    }

    .weekday-btn {
        min-width: 80px;
    }
    
}

#wrapper_img{
  margin: 24px 70px;
  width: 220px;
  height: 220px;
}
#temporary_block_category_protection_level{
  display: none;
}
#temp_protection_level_div{
  margin:20px;
}

.bp-app-name-wrap {
    display: flex;
    align-items: center;
}
.bp-app-icon{
    width:50px;
}
.bp-package-name{
    opacity:0.6;
    font-size: smaller;
}
.app-btn{
    display:flex;
}
.app-btn .inner-app-name {
    display: inline-block;
    max-width: 100px;
    overflow-x: hidden;
    white-space: nowrap;
    direction: ltr;
    font-size: 11px;
}
@media (min-width: 700px) {
   .app-btn .inner-app-name {
        max-width: 200px;
   }
}
.app-btn img {
    width: 17px;
    position: relative;
    top: 4px;
    height: 17px;
}
.app-btn .inner-app-btn {
    display: flex;
    direction: ltr;
}
.bp-url {
    direction: ltr;
    word-break: break-word;
    font-size: 13px;
}
.url-level-comment {
    display: block;
    font-size: 10px;
    color: #666;
}

/************************ IOS APPS LIST *********************/

#ios_apps_list {
    display: grid;
    grid-template-columns: minmax(60px, 1fr) minmax(60px, 1fr) minmax(60px, 1fr) minmax(60px, 1fr);
}

#ios_apps_list .ios_app_icon_container {
    position: relative;
    margin: 10px;
    width: 55px;
}

#ios_apps_list .app-icon {
    height       : 52px;
    width        : 52px;
    border-radius: 15px;
    box-shadow   : 1px 1px 5px gray;
}

.jiggle {
    animation: jiggle 0.25s infinite;
}

#ios_apps_list .app-icon.removing {
  opacity:0.4;
}

#ios_apps_list .removing_loader {
  position: absolute;
  width   : 30px;
  top     : 20%;
  left    : 25%;
}

#ios_apps_list .removing_app_text {
  font-size  : 8px;
  font-weight: bold;
  text-align : center;
}


.ios_app_icon_container .apps-table-remove-btn {
    position: absolute;
    top: -14px;
    left: -14px;
}

@keyframes jiggle {
    0% {
        transform: rotate(-3deg);
        animation-timing-function: ease-in;
    }
    50% {
        transform: rotate(3deg);
        animation-timing-function: ease-out;
    }
}

/* LOGIN PAGE */
.header svg.side-menu-icon {
  fill: #1E50D2;
  fill: var(--svgcolor2);
}

.desktop-bg {
    background-color: #f7f7f9;
    /* margin: 0;
    overflow-y: hidden; */
}

.partner div, .partner button, .partner a {
  font-family: SimplerPro_V3;
}
.header {
    height: 85px;
    position: sticky;
    top: 0px;
    right: 0px;
    box-shadow: 3px 5px 12px -2px rgba(0,0,0,0.06);
    z-index: 2;
}

.netspark .header {
    background: url(/img/desktop/new_logo.svg) #fff no-repeat;
    background-position: 50% 23px;
    background-size: 200px;
}

.askan .header {
	background: url(/dist/askan/img/askan_header.png) #fff no-repeat;
    background-size: 125px;
    background-position: 50% 11px;
}

.safetec .header {
	background: url(/dist/safetec/img/safetec_header.png) #fff no-repeat; /* 94% desktop */
	background-size: 200px;
    background-position: 50% 85%;
}

.enativ .header, .nativ .header {
    background: url(/dist/nativ/img/nativ_header.png) #fff no-repeat;
    background-position: 50% 0px;
    background-size: 240px;
}

.netsmart .header {
	background: url(/dist/netsmart/img/netsmart_header.svg) #fff no-repeat;
    background-position: 50% 0;
	background-size: 100px; 
}

.partner .header {
    background: url(/dist/partner/img/partner_header.svg) #fff;
    background-position: 45% 60%;
    background-size: 225px;
    background-repeat: no-repeat, no-repeat;
}

.etrog .header {
	background: url(/dist/etrog/img/etrog_header.png) #042538 no-repeat 55% top; /* 94% desktop */
	background-size: 160px;
	border-bottom: 2px solid #16577D;
	height: 80px;
}

.rimon .header {
    background: url(/dist/rimon/img/rimon_header.png) #fff no-repeat;
    background-position: 50% top;
    background-size: 189px;
}

.tom .header {
	background: url(/dist/tom/img/tom_header.png) #fff no-repeat;
    background-position: 50% 20px;
    background-size: 280px;
}

.content{
    text-align: center;
    color: #767171;
}

.btns-choice-container {
    display: flex;
    justify-content: space-around;
    max-width: 500px;
    margin: 0 auto;
}

.btn-choice {
  width        : 137px;
  height       : 32px;
  margin-top   : 20px;
  background   : none;
  color        : gray;
  font-size    : 16px;
  text-overflow: ellipsis;
  white-space  : nowrap;
  overflow     : hidden;
  line-height  : 25px;
  border       : none;
  font-weight  : 500;
  border-radius: 50px;
  text-align   : center;
}

body:not(.netspark) .btn-choice,
body:not(.netspark) .login_submit,
body:not(.netspark) .login_screen_container .small-btn {
    border-radius: 0px;
}

.partner .desktop-container {
    border-radius: 0px;
    box-shadow: 0 2px 9px 0 rgba(0, 0, 0, 0.2);
}
.btn-choice.selected, .login_submit {
    background: var(--radiocolor);
    color: white;
}

.partner .content,
.partner .btn-choice,
.partner .basic-btn,
.partner .user-input::placeholder,
.partner .captca_text::placeholder {
    color: black;
}

.partner button {
    font-weight: bold;
}

.partner .btn-choice:not(.selected) {
    color: gray;
}

.partner .small-btn,
.partner .login_submit {
    border: solid 2px #000;
}

.desktop-container {
    display: block;
    border-radius: 10px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 5px 16px 0 rgba(0, 0, 0, 0.07);
    box-sizing: border-box;
}

.block-page-container {
    max-width: min(50%, 600px);
    overflow: hidden;
    position: relative;
    /* top: 85px; */
    height: 750px;
}

.block-page-container .expand {
    min-height: 0;
    height: calc(750px - 285px);
}

.block-page-container .single_page_container {
    min-height: 90%;
}

.desktop-container .under_button {
  margin-bottom: 0;
}

.login-form-container {
    padding: 25px;
    max-width: 440px;
}

.desktop-bg .link {
    color: #224dff;
    display: inline;
}

.user-input, .captca_text{
	border: none;
    border-bottom: 2px solid rgb(77, 77, 77, 0.3);
    color: rgb(77, 77, 77, 0.5);
    display: block;
    width: 100%;
    line-height: 30px;
    font-size: 18px;
    padding: 4px 0px;
    margin-bottom: 23px;
    outline: none;
    direction: start;
}

.user-input::placeholder, .captca_text::placeholder {
    color: rgb(77, 77, 77, 0.5);
}

.user-input:disabled {
    color        : black;
    border       : none;
    margin-bottom: 5px;
}

.partner .user-input,
.partner .captca_text{
    border-bottom: 4px solid #2ed5c4;
    margin-bottom: 25px;
}

div.user_name_field {
  position: relative;
}

div.user_name_field_tooltip {
  position     : absolute;
  background   : white;
  padding      : 10px;
  width        : 93%;
  box-shadow   : 0 2px 4px #000000b3;
  border-radius: 10px;
  top          : 42px;
  right        : 0;
}

div.user_name_field_tooltip div:not(:first-of-type) {
  margin-top: 10px;
}

div.user_name_tooltip_sign {
  position     : absolute;
  background   : rgb(216, 216, 216);
  border-radius: 50%;
  width        : 18px;
  text-align   : center;
  top          : 10px;
  left         : 0;
  font-size    : 16px;
  height       : 18px;
  cursor       : pointer;
}

.captca_img {
    width:100%;
    height: 51px;
    border: 1px solid #a9a9a9;
}

.desktop-bg .link.return_back_link{
    display: block;
    margin-top: 10px;
    text-decoration: underline;
}

.login_form_title{
	color: #4d4d4d;
    font-size: 26px;
    font-weight: 600;
    letter-spacing: -0.55px;
    margin-bottom: 0;
}

.login_form_title.user {
    display: none;
}

.seperator{
	width: 60px;
	height: 3px;
	margin: 5.5% auto;
    background: var(--seperator);
    border: none;
}

.partner .seperator {
    visibility: hidden;
}

.input_container {
    position: relative;
}

.pwd_eye {
	position: absolute;
    bottom: 11px;
    font-size: 14px;
}

.forgot_password_link {
    position: absolute;
    bottom: 8px;
	font-size: 14px;
    color: rgb(77,77,77,0.5);
}

.partner .forgot_password_link {
    color: #2ed5c4;
    font-weight: bold;
    text-decoration: underline;
}

.login_form_message{
	margin-bottom: 16px;
    text-align: center;
    font-size: 14px;
    min-height: 24px;
}

.login_form_message .error_message {
    color: #ff6161;
}

.login_form_message .success_message {
    color: green;
}

.login_form_message .wait_message{
    display: none;
}

.login_form_message .wait_message .wait_gif {
    height: 18px;
    vertical-align: middle;
    padding: 0 5px;
}

.login_screen_container {
    text-align: start;
    font-size: 16px;
}

.login_screen_container .title {
    margin: 0;
    font-weight: bold;
}

.login_screen_container .small-btn {
    background: var(--radiocolor);
}

.login_screen_container .inside {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
}

.login_screen_container i {
    padding: 0 5px;
}

.login_screen_container  .time {
    text-indent: 28px;
    margin: 0;
}

.link_login_form {
    display        : block;
    color          : #a6a6a6;
    text-decoration: none;
    text-align     : center;
    font-size      : 14px;
    height         : 25px;
}

.desktop-container.login-form-container {
  padding: 20px 25px;
}

.mobile-device-details {
    font-size: 14px;
    padding: 5px 10px;
    position: fixed;
    bottom: 0;
    box-sizing: border-box;
    color: rgb(77,77,77,0.5);

    width: 100%;
    display: flex;
    justify-content: space-between;
}

span#uninstall_link {
  font-size      : 14px;
  padding        : 5px 10px;
  box-sizing     : border-box;
  color          : rgb(77,77,77,0.5);
  text-align     : center;
  width          : 100%;
  position       : fixed;
  display        : flex;
  bottom         : 0;
  justify-content: center;
}

.mobile_keyboard_open.mobile-device-details {
    position: relative;
}

@media (max-width: 560px){
    .login-form-container {
        max-width: 90%;
    }
}

.transfer-device{
  opacity: 0.75;
  font-family: Assistant;
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
.transfer-device-desc {
  margin: 12px 0 0 10px;
}
.transfer-device-desc a.click{
  font-weight:600!important;
}
.transfer-device-q-a {
  font-weight: 600;
  padding-top: 25px;
  flex: 1;
}
#confirm-before-transafer-license-popup .center-body {
  font-size: 16px;
}
#confirm-before-transafer-license-popup .radio_list {
  font-weight:bold;
}
#confirm-before-transafer-license-popup .pop_up h2 {
  padding: 0 40px;
}
#wait-for-transfer-center-div{
    text-align: center;
	min-height: calc(100vh - 300px);
}
img.big-loader {
    height: 52px;
}

.device-app {
  width: 263px;
  height: 24px;
  margin: 0 5px 0 9px;
  font-family: Assistant;
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  text-align: right;
  color: #000;
}

.text-style-1 {
  font-weight: 600;
}

.zero_state1 {
  margin-top: 20px;
  width: 40%;
}

.use_old_or_new_licence {
  margin: 10px 0 15px 0;
}

.use_old_or_new_licence input[type="checkbox"] {
  display: initial;
}

.hardware_id_installation_footer {
  text-align: center;
  font-size: 10px;
  opacity: 0.5;
  margin-bottom: 10px;
}

#rimon_android_activation_code h3 {
  margin-top: 10px;
  font-size : 14px;
}

#rimon_android_activation_code .basic-btn {
  margin-top: 10px;
}

#set_previous_or_new_activation_code.not_auto_margin_top {
  margin-top: 10px;
}

#activation_code_and_error {
  display   : none;
  margin-top: -5px;
}


.tabs-menu a[href='#home_network_protection'] {
  display: none;
}

.tabs-menu.home_network_protection {
  display: none;
}

.space {
  flex: 2.5;
}

.visible_links {
  color: blue !important;
  text-decoration:underline
}

.form-confirmation-container {
  display: flex;
  height: 85%;
  align-items: center;
  justify-content: center;
  width: 100%;
}

.form-confirmation-container .title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: 20px;
}

.form-confirmation-container .logo {
  width: 40%;
  display: block;
}

.confirmation_centerd {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-direction: column;
  height: 85%;
}

@media (max-width: 800px) {
  .confirmation_centerd {
    justify-content: center;
  }
  
}

.stolen_device_first_message,
.stolen_device_second_message {
  background    : #E5EFFF;
  border-radius : 11px;
  padding       : 10px;
  padding-bottom: 15px;
  text-align    : center;
  display       : none;
}

.blue_netspark_color {
  color: #092BD3;
}

img.circle_exclamation {
	width: 30px;
}

.dist_primary_color {
  color: #0064FA;
}

.allway_on_vpn_img {
	width  : 75%;
  margin : 15px auto;
  display: flex;
}

.big_margin_bottom {
	margin-bottom: 40px;
}

.font_weight_bold {
  font-weight: bold;
}

.regular_font_size {
  font-size: 16px;
}
.apps-list {
  max-height: 68vh;
  overflow-y: auto;
  padding: 0 20px;
  padding-bottom: 20px;
}

.app_container {
  height: 65px;
}

.blocked_app_button_wrapper {
  display: flex;
  flex-direction: column;
  padding-top: 20px;
}

.delete_blocked_app_button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 17px;
  color: #333;
}

.send_request_blocked_app_button {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 12px;
  text-decoration: underline;
}

#blocked_apps_list .pop_up {
  padding-bottom: 10px;
}

.ltr_direction {
  direction: ltr;
}

.device-info {
  padding-left: 32px;
  padding-right: 32px;
}

.send_install_link_pop_up_body_wrapper {
  margin-top   : 5px;
  margin-bottom: 20px;
}

.subtabs-container {
  background-color: transparent;
  padding: 0;
  margin: 0;
  border-bottom: none;
  display: none;
  position: relative;
  z-index: 1;
}

.subtabs-container.show {
  display: block;
}

.subtabs-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  margin: 0;
  height: auto;
  background-color: transparent;
}

.subtab-link {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;

  background: none !important;
  background-color: transparent !important;
  border: none !important;
  border-radius: 0 !important;
  box-shadow: none !important;
  outline: none !important;

  flex: 1;
  text-align: center;
  padding: 12px 8px;
  margin: 0;

  color: #72829d;
  font-family: 'Rubik', 'Assistant', sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-decoration: none;
  line-height: 1.2;

  cursor: pointer;
  transition: color 0.3s ease;

  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;

  -webkit-tap-highlight-color: transparent;
}

.subtab-link.selected {
  color: #4a4872;
  font-weight: 700;
  background: none !important;
  background-color: transparent !important;
}

[dir="rtl"] .subtabs-nav {
  direction: rtl;
}

[dir="rtl"] .subtab-link {
  direction: rtl;
}

#tab-section.show-subtabs {
  padding-top: 60px;
}

.subtab-link:focus,
.subtab-link:active {
  background: none !important;
  background-color: transparent !important;
  outline: none !important;
  box-shadow: none !important;
}

@media (min-width: 361px) {
  .subtab-link {
    -webkit-appearance: none !important;
    appearance: none !important;
    background-image: none !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    font-size: 16px;
    padding: 8px 4px;
  }

  .subtabs-nav {
    padding: 8px 0;
  }

  #tab-section.show-subtabs {
    padding-top: 90px;
  }
}

@media (max-width: 360px) {
  .subtab-link {
    font-size: 14px;
    padding: 6px 2px;
  }

  .subtabs-nav {
    padding: 2px 0;
  }
}

.subtabs-nav::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: #4A4872;
  margin: 0 21px;
}

.wrapper-footer:has([data-component="EmbeddedComponent"]) {
  min-height: 250px;
}