/**
 * Redakční systém JSR
 * produkt_garance.css
 * Soubor s CSS styly pro popup onko garance ceny.
 *
 * @author Jakub Roček <jakub@skit.cz>
 * @copyright (c) 2007-2024 Josef Šmíd
 * @version 2.5.4
 */

.dialog_sdilet_ulozit.ui-dialog
{
    border-radius: 0px!important;
    border: 0!important;
    padding: 0!important;
    z-index: 1061 !important;
    left: 0!important;
    right: 0!important;
    top: 50% !important;
    margin: auto!important;
    display: inline-table;
    max-width: 1000px;
    min-width: 288px;
    transform: translateY(-50%);
    position: fixed!important
}
.dialog_sdilet_ulozit.ui-dialog .ui-dialog-content
{
    padding: 5%!important;
    padding-top: 2%!important;
    display: flex;
    flex-direction: row;
    align-items: flex-start;

}
.dialog_sdilet_ulozit.ui-dialog .ui-dialog-titlebar-close {

    right: 20px!important;
    top: 20px!important;
    width: 20px!important;
    padding: 0!important;
    height: 20px!important;
    margin: 0px!important;
    border: none!important;
    background-color: transparent!important;
    border-radius: 0!important;
    z-index: 10;
}
.dialog_sdilet_ulozit .ui-button .ui-icon {
    background-image: url(../images/close.png)!important;
}

.dialog_sdilet_ulozit .polovina
{
    width: 55%;
    padding-left: 5%;
}
.dialog_sdilet_ulozit .polovina:first-of-type
{
    width: 40%;
    padding-left: 0;
}
.sdilet_ulozit
{
    overflow-x: hidden!important;
}
.sdilet_ulozit_logo
{
    width: 100%;
    text-align: center;
}
.sdilet_ulozit_logo img
{
    margin: 0;
    width: 40%;
    height: auto;
}
.sdilet_ulozit_img
{
    width: 100%;
    height: auto;
    margin: 0;
}
.sdilet_ulozit_img_preset
{
    width: 100%;
    height: auto;
    margin: 0;
}
.sdilet_ulozit_nadpis
{
    margin-top: 5%;
    margin-bottom: 10%;
    text-align: left;
    font-size: 170%;
    font-weight: 700;
    line-height: 150%;
}
.sdilet_ulozit_text
{
    margin-bottom: 5%;
    text-align: left;
    font-size: 100%;
    font-weight: 500;
    line-height: 130%;
}
.sdilet_ulozit_prvek
{
    margin-bottom: 5%;
    text-align: left;
    font-size: 100%;
    font-weight: 600;
    line-height: 130%;
    cursor: pointer;
}
.sdilet_ulozit_prvek:hover
{
    text-decoration: underline;
}
.sdilet_ulozit_neaktivni
{
    text-decoration: none;
    color: gray;
    cursor: default;
}
.sdilet_ulozit_neaktivni:hover
{
    text-decoration: none;
}

.sdilet_ulozit .info_hlaska {
    width: 95%;
    border-radius: 5px;
    height: 50px;
    margin-bottom: 0;
    margin-top: 8%;
    display: flex;
    align-items: center;
    flex-direction: row;
    flex-wrap: nowrap;
}
.sdilet_ulozit .info_hlaska div:first-of-type {
    float: left;
    height: 100%;
    width: 3%;
}
.sdilet_ulozit .info_hlaska div:nth-of-type(2) {
    float: left;
    height: 100%;
    display: table;
    margin-left: 5%;
    width: 92%;
    text-align: left;
}
.sdilet_ulozit .chyba_sec
{
    display: none;
    border: 1px solid #ff0000;
    background-color: white;
}
.sdilet_ulozit .chyba_sec div:first-of-type
{
    background-color: red;
}
.sdilet_ulozit .chyba_sec div:nth-of-type(2) p
{
    color: #ff0000;
}
.sdilet_ulozit .potvrzeni
{
    display: none;
    border: 1px solid #00AE58;
    background-color: white;
}
.sdilet_ulozit .potvrzeni div:first-of-type
{
    background-color: #00AE58;
}
.sdilet_ulozit .potvrzeni div:nth-of-type(2) p
{
    color:#00AE58;
}
/* The container */
.sdilet_ulozit_prvek .check_obj_lab {
    display: block;
    position: relative;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

/* Hide the browser's default checkbox */
.sdilet_ulozit_prvek .check_obj_lab input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.sdilet_ulozit_prvek .check_obj_ch {
    position: absolute;
    top: 0;
    left: 0;
    height: 25px;
    width: 25px;
    background-color: #eee0;
    border-radius: 20%;
    border: 2px solid #d0d9e5;
}

/* On mouse-over, add a grey background color */
.sdilet_ulozit_prvek .check_obj_lab:hover input ~ .check_obj_ch {
    background-color: #d0d9e5;
}

/* When the checkbox is checked, add a blue background */
.sdilet_ulozit_prvek .check_obj_lab input:checked ~ .check_obj_ch {
    background-color: #00AE58;
    border: 2px solid #00AE58;
}

/* Create the checkmark/indicator (hidden when not checked) */
.sdilet_ulozit_prvek .check_obj_ch:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.sdilet_ulozit_prvek .check_obj_lab input:checked ~ .check_obj_ch:after {
    display: block;
}

/* Style the checkmark/indicator */
.sdilet_ulozit_prvek .check_obj_lab .check_obj_ch:after {
    left: 9px;
    top: 3px;
    width: 5px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    -webkit-transform: rotate(
        45deg
        );
    -ms-transform: rotate(45deg);
    transform: rotate(
        45deg
        );
}

.dialog_sdilet_ulozit .absolute_check
{
    position: absolute;
    bottom: 0;
    right: 0;
    padding: 0 5% 0 0;
}
.sdilet_ulozit_prvek .nazev_konf_check
{
    font-size: 100%;
    font-weight: 600;
    line-height: 190%;
    padding-left: 40px;
}
.button_sdilet_ulozit_plny
{
    transition: 0.25s ease-in;
    background-color: #00AE58;
    border-radius: 6px;
    cursor: pointer;
    color: #ffffff;
    font-size: 100%;
    width: auto;
    display: table;
    border: 2px solid #00AE58;
    font-weight: bold;
    margin-bottom: 5%;
    align-content: center;
    padding: 0 3%;
    min-height: 50px;
    line-height: normal;
}
.button_sdilet_ulozit_plny span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.button_sdilet_ulozit_plny:hover {
    background-color: transparent;
    color: #00AE58;
    text-decoration: none;
}
.button_sdilet_ulozit_prazdny
{
    transition: 0.25s ease-in;
    background-color: transparent;
    border-radius: 6px;
    cursor: pointer;
    color: #00AE58;
    font-size: 100%;
    width: auto;
    display: table;
    border: 2px solid #00AE58;
    margin-bottom: 5%;
    align-content: center;
    padding: 0 3%;
    min-height: 50px;
    line-height: normal;
}
.button_sdilet_ulozit_prazdny span {
    display: table-cell;
    vertical-align: middle;
    text-align: center;
}
.button_sdilet_ulozit_prazdny:hover {
    background-color: #00AE58;
    color: #ffffff;
    text-decoration: none;
}
@media (max-width: 1000px)
{
    .sdilet_ulozit .polovina
    {
        width: 100%;
        padding-bottom: 40px;
    }
    .sdilet_ulozit .polovina:first-of-type
    {
        display: none;
    }
}
