
form#productq .withtooltip input,
form#purchase_form .withtooltip input,
form#rent_form .withtooltip input,
form#productq .withtooltip textarea,
form#contactq .withtooltip input,
form#contactq .withtooltip textarea{
    width: calc(100% - 30px) !important;
    display: inline-block ;
}


label[for="gdpr_checkbox"]{
	font-size: 13px;
}

.withtooltip__cart{
    width: 47.5%;
    float: left; 
}

.withtooltip__cart:nth-child(even){
    margin-left: 5%;
}


@media only screen and (max-width: 40em){
    .withtooltip__cart{
        width: 100%;
        margin-left: 0px !important;
    }
}

.withtooltip.withtooltip__cart input{
    margin-left: 0px !important;
}

/* Tooltip container */
.tool-tip {
    position: relative;
    /*display: inline-block;*/
    cursor: pointer;

    float: right;
    margin-top: 6px;
}


.tool-tip .qmark{
    display: inline-block;
    background-color: #b3b3b3;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
    width: 22px;
    height: 22px;
    text-align: center;
    line-height: 22px;
    color: #fff;
    font-weight: bold;
    transition: background-color .3s;
}

.tool-tip .qmark:hover{
    background-color: #8FCC58;
}

/* Tooltip text */
.tool-tip .tooltiptext {
    visibility: hidden;
    width: 270px;
    background-color: #ccc;
    color: #0d4170;
    text-align: center;
    padding: 15px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;


    line-height: 14px;
    font-size: 11px;
    font-family: Arial;

    height: 78px;
    margin-top: -42px;

    /* Position the tooltip text */
    position: absolute;
    z-index: 1;
    top: 50%;
    right: 30px;
    

    /* Fade in tooltip */
    opacity: 0;
    transition: opacity 0.3s;
}

/* Tooltip arrow */
.tool-tip .tooltiptext::after {
    content: "";
    margin-top: -3px;
    position: absolute;
    top: 50%;
    right: -12px;
    border-width: 6px;
    border-style: solid;
    border-color: transparent transparent transparent #ccc;
}

/* Show the tooltip text when you mouse over the tooltip container */
.tool-tip:hover .tooltiptext {
    visibility: visible;
    opacity: 1;
}

@media only screen and (max-width: 40em){
    .tool-tip .tooltiptext {
        width: 241px;
        padding: 11px 15px;
    }
}
