.products-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

.add-new-product-container {
    padding: 20px;
}

.add-new-product-container-shadow {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 15px;
    padding: 15px;
}

.products-col {
    flex-basis: 75%;
    display: flex;
    justify-content: space-between;
}

.products-col .select-container {
    flex-basis: 75%;
}

.products-col .counter-container {
    flex-basis: 20%;
}

.points-col {
    flex-basis: 20%;
}

.add-new-product-container select,
.add-new-product-container input,
.status-box select {
    height: auto !important;
}

.selection-product-row {
    padding-bottom: 20px;
    border-bottom: #cccccc 1px solid;
}

.add-new-product-button-container {
    display: flex;
    align-items: flex-end;
}

.product-sum-points-title {
    font-size: 14px;
}

.calculator-calculated-points {
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    margin-top: 10px;
}

.delete-product-icon {
    color: #DF0A25;
    cursor: pointer;
}

.product-delete-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.status-container {
    padding: 20px;
}

.status-box {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
    border-radius: 15px;
    padding: 15px;
    height: 100%;
}

.calculated-points-text {
    font-size: 20px;
    font-weight: bold;
}

.status-title {
    font-size: 25px;   
}

.awards-sum-data {
    margin-top: 10px;
    font-size: 20px;
    color: #666;
}
.awards-sum-data div {
    margin-top: 10px;
}

.awards-sum-data span, .awards-select span {
    font-weight: bold;
    font-size: 20px;
}

.awards-select {
    margin-top: 50px;
    margin-bottom: 100px;
}

.awards-select select {
    margin-top: 10px;
}

.awards-select div{
    margin-top: 10px;
    color: #666;
}

/* customowe selec2 style */
.select2-container .select2-selection--single {
    border-radius: 0px !important;
    display: flex;
    align-items: center;


    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    padding: .375rem .75rem !important;
    height: 2.25rem !important;
    border-color: rgb(202, 202, 202) !important;
}

.select2-container .select2-selection__arrow {
    height: 100% !important;
    position: absolute;
    top: 0;
    right: 10px;
    display: flex;
    align-items: center;
    pointer-events: none;
}

.select2-container .select2-selection__clear {
    display: none !important;
}

.select2-dropdown {
    min-width: 700px !important;
}

@media only screen and (max-width: 769px) {
  .select2-dropdown {
    min-width:  300px !important;
}
}

