
/***************************************************************************************************************/
/******** styles for Vert.newModal *****************************************************************************/
/***************************************************************************************************************/

/*** background */
.vert-modal-back{
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 99998; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgba( 0, 0, 0, 0.75); /* Black - opacity */
}

/*** vert block */
.vert-modal-block{
    position: absolute;
    box-sizing: border-box;
    display: none; /* Hidden by default */
    width: 100px;
    background-color: #3c3f41;
    left: 0;
    top: 0;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    z-index: 99999; /* Sit on top */
    font-size: 16px;
    font-weight: normal;
    border: 1px solid #515151;
}

.vert-modal-header {
    padding: 4px 0 4px 4px;
    margin: 0;
    background-color: #3c3f41;
    font-family: Verdana, Geneva, sans-serif;
    font-size: 14px;
    line-height: 14px;
    text-align: center;
    color: #bababb;
    border-bottom: 1px solid #323233;
}

.vert-modal-title{
    margin: 0;
}

/******* close button */
.vert-modal-close-button {
    float: right;
    color: white;
    padding: 4px;
    margin: -4px 0 0 0;
    background-color: rgba(0,0,0, 0.1);
    font-weight: bold;
}

.vert-modal-close-button:hover {
    background-color: #ff3400;
    cursor: pointer;
}

/******* vert box */
.vert-modal-box {
    box-sizing: border-box;
    padding: 3px;
    margin: 0;
    width: 100%;
}

/****************************************************************************************************************/
/******* styles for Vert.new ************************************************************************************/
/****************************************************************************************************************/


.vert-title {
    width : 50%;    /* initial size */
    margin: 0 auto; /* do not change */
    border: 0;
    padding: 3px;
    word-break: break-all;
    background-color: rgba(172,78,244,0.5);
    color : white;
    text-align:  center;
    font-size: 14px;
    font-weight: 400;
    font-family:  Verdana, Geneva, sans-serif;
}

.vert-box {
    display: block;
    width: 50%;     /* initial size */
    margin: 0 auto; /* do not change */
    border: 0;      /* do not change */
    padding: 0;     /* do not change */
}

/*******************************************************************************************************************/
/**************** styles for Vert **********************************************************************************/
/**************** vert holder styles: logo img, info p, zoom switch checkbox ***************************************/
/**************** vert link ****************************************************************************************/
/*******************************************************************************************************************/

.vert-holder {
    font-family:  Arial, Helvetica, sans-serif;
    position : absolute;
    margin-top: 3px;
    margin-left: 3px;
    box-sizing: border-box;
    background-color: rgba(222, 190, 255, 0.6);
    border-radius: 16px;
    height: 29px;
    width: 102px;
}

/* vert info */
.vert-holder p {
    position: absolute;
    padding-top: 0;
    margin: 3px 0 0 48px;
    font-size: 14px;
    font-weight: bold;
    line-height: 23px;
    color: #350c56;
}

/* logo image */
.vert-holder img {
    position: absolute;
    width: 24px;
    height: 24px;
    top: 3px;
    left: 4px;
    margin: 0;
    background-color: transparent;
    cursor: pointer;
    /*filter: drop-shadow(3px 2px 1px #c786ff); /* быстрее работает на старых мобилах - comment*/
}

/* switch */
.vert-holder input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    z-index: -2;
}


.vert-holder input[type="checkbox"] + label {
    position: relative;
    display: inline-block;
    width: 68px;
    height: 29px;
    border-radius: 14px;
    margin: 0 0 0 34px;
    cursor: pointer;
    color: #ab4df3;
    font-weight: bold;
    box-shadow: inset -8px -8px 15px rgba(255,255,255,.6),
    inset 10px 10px 10px rgba(0,0,0, .25);
}

/* switch off */
.vert-holder input[type="checkbox"] + label::before {
    position: absolute;
    content: 'zoom'; /* off*/
    font-size: 13px;
    text-align: center;
    line-height: 21px;
    top: 3px;
    left: 5px;
    width: 45px;
    height: 22px;
    border-radius: 20px;
    background-color: #d1dad3;
    box-shadow: -3px -3px 5px rgba(255,255,255,.5),
    3px 3px 5px rgba(0,0,0, .25);
    transition: .3s ease-in-out;
}

/* switch on */
.vert-holder input[type="checkbox"]:checked + label::before {
    left: 18px;
    content: 'zoom'; /* on */
    color: #fff;
    background-color: #ac4ef4;
    box-shadow: -3px -3px 5px rgba(255,255,255,.5),
    3px 3px 5px #aa49ff;
}

/* switch disabled */
.vert-holder  input[type=checkbox][disabled]+label{
    color: silver;
    /* background-color: rgba(192, 192, 192, 0.1); /* быстрее работает на старых мобилах - comment*/
}

/* vert link */
.vert-link {
    position : relative;
    width: 94px;
    height: 16px;
    margin: 0;
    border: 0;
    padding: 0;
    background-color:  rgba(172,78,244,0.5);
    color : white;
    text-align:  center;
    line-height:  16px;
    font-size:  11px;
    font-weight:  normal;
    font-family:  Verdana, Geneva, sans-serif;
    text-decoration:  none;
    cursor: pointer;
}

.vert-link:hover{
    background-color: rgba(172,78,244,0.8);
}