/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : 25.10.2018, 15:13:24
    Author     : Blaszczyk
*/

textarea {
    resize: vertical;
}
/* CSS Select 2 */
.select2-container .select2-selection--single {
    height: 46px;
    line-height: 46px;
}
.select2-container .select2-selection--single .select2-selection__rendered {
    padding: 10px 16px;
}
.select2-container .select2-selection--single {
    height: 46px;
}
.select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 46px;
}

/* Submenu nach rechts anzeigen */
.dropdown-submenu {
    position: relative;
}

.dropdown-submenu > .dropdown-menu {
    top: 0;
    left: 100%;
    margin-top: -1px;
    display: none;
    position: absolute;
}

/* Pfeil nach rechts */
.caret-right {
    border-top: 4px solid transparent;
    border-bottom: 4px solid transparent;
    border-left: 4px solid #000;
    display: inline-block;
    margin-left: 5px;
}

/* Hover-Logik */
.dropdown-submenu:hover > .dropdown-menu {
    display: block;
}