
  .protected {
    border-radius: 50%;
    width: 1rem;
    height: 1rem;
    padding: 0.5rem;
    box-shadow: inset 0 0 0 0.12rem red;
    position: relative;
    z-index: 0;
    overflow: hidden;
    margin-bottom:5px;
  }

  .protected::before {
      content: '' !important;
      position: absolute;
      width: 105%;
      height: 0.12rem;
      background-color: red;
      transform: rotate(-45deg);
      transform-origin: 0 0 0;
      /* bottom: 0.5rem;
      left: 1rem; */
      bottom:-1px;
      left: 0; 
      z-index: 1;
      border: 0;
      outline: 0;
    }


    /* Edit mode  styles */
    

    /* Set the zoom size for the modal */
    
    #edit_element_frame {            
      -ms-zoom:1.2;
      -moz-transform: scale(1.2);           
      -o-transform: scale(1.2);           
      -webkit-transform: scale(1.2);              
      margin: auto;
      
    }

    #edit_element_frame body {
      overflow-x: none;
    }

    /* Set the position and styles of the edit mode toggle switch  */

    #edit_mode_switch {
      position: fixed;
      top: 35%;
      
      right: 16%;
      z-index: 10;
      display:none;
    }

    .toggle {
      cursor: pointer;
      display: inline-block;
    }
    
    .toggle-switch {
      display: inline-block;
      background: #ddd;
      border-radius: 50% ;
      color: #fff;
      width: 40px;
      padding: 5px;
      height: 40px;
      position: relative;
      vertical-align: middle;
      /* transition: background 0.25s; */
      transition: none;
      opacity: 0.5;
      /* border: 2px solid #fff; */      
    }

    

    .toggle-switch:hover{
      opacity: 1;
    }

    /* .toggle-switch:before, .toggle-switch:after {
      content: "";
    } */

    /* .toggle-switch:before {
      display: block;
      background:  #fff;
      border-radius: 50%;
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.25);
      width: 20px;
      height: 20px;
      position: absolute;
      top: 2px;
      left: 0;
      transition: left 0.25s;
     
    } */

    /* .toggle:hover .toggle-switch:before {     
      box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.5);
    } */

    /* .toggle-switch {
        background:url('../../../assets/icons/screenoptions.svg') no-repeat center center;
    } */



    .toggle-checkbox:checked + .toggle-switch {
      background: #fff; 
      border: 3px solid #007bff;  
      opacity: 1;
    }

    .toggle-checkbox:checked + .icon{

      width: 3px; height: 3px;

    }

    .toggle-checkbox:checked + .toggle-switch:before {
      /* left: 30px; */
    }
    
    .toggle-checkbox {
      position: absolute;
      visibility: hidden;
    }
    
    /* .toggle-label {
      margin-left: 5px;
      position: relative;
      top: 2px;
      color: #999;
    } */

    .element-edit-link:before {
      content: '🖉';    
    }

  .element-edit-link {
    display: none;
    margin: 5px;
    text-align: left;
    background: #007bff;
    width: 32px;
    height: 32px;
    border-radius: 30px;
    color: #fff;
    line-height: 34px;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

.element-edit-link:hover{
  color: #fff;
}

@media ( max-width: 800px ) {
	#edit_mode_switch {
		display:none !important;
	}
}